gxp.plugins.MapQuestSource

Extends
ptype
gxp_mapquestsource
class gxp.plugins.MapQuestSource(config)

Plugin for using MapQuest layers with gxp.Viewer instances.

Available layer names are “osm” and “naip”

Example Use

The configuration in the sources property of the gxp.Viewer is straightforward:

"mapquest": {
    ptype: "gxp_mapquestsource"
}

A typical configuration for a layer from this source (in the layers array of the viewer’s map config option would look like this:

{
    source: "mapquest",
    name: "osm"
}

Config Options

Configuration properties in addition to those listed for Ext.util.Observable.

naipAttribution

String Attribution string for NAIP generated layer (i18n).

naipTitle

String Title for NAIP generated layer (i18n).

osmAttribution

String Attribution string for OSM generated layer (i18n).

osmTitle

String Title for OSM generated layer (i18n).

title

String A descriptive title for this layer source (i18n).

Public Properties

Public properties in addition to those listed for Ext.util.Observable.

MapQuestSource.hidden

Boolean Set to true if you don’t want this LayerSource to show up in the AddLayers dialog. Defaults to false.

MapQuestSource.lazy

Boolean. true when the source is ready, but its store hasn’t been loaded yet (i.e. lazy source). Read-only.

MapQuestSource.store

GeoExt.data.LayerStore. Will contain records with “osm” and “naip” as name field values.

MapQuestSource.title

String A descriptive title for this layer source.

Public Methods

Public methods in addition to those listed for Ext.util.Observable.

MapQuestSource.createLayerRecord()
Parameters:configObject The application config for this layer.
Returns:GeoExt.data.LayerRecord

Create a layer record given the config.

MapQuestSource.createStore()

Creates a store of layer records. Fires “ready” when store is loaded.

MapQuestSource.getConfigForRecord()
Parameters:recordGeoExt.data.LayerRecord
Returns:Object

Create a config object that can be used to recreate the given record.

MapQuestSource.getProjection()
Parameters:layerRecordGeoExt.data.LayerRecord a record from this source’s store
Returns:OpenLayers.Projection A suitable projection for the layerRecord. If the layer is available in the map projection, the map projection will be returned. Otherwise an equal projection, or null if none is available.

Get the projection that the source will use for the layer created in createLayerRecord. If the layer is not available in a projection that fits the map projection, null will be returned.

MapQuestSource.getState()
Returns:Object

Gets the configured source state.

MapQuestSource.init()
Parameters:targetObject The object initializing this plugin.

Calls createStore() with a callback that fires the ‘ready’ event.

Events

Events in addition to those listed for Ext.util.Observable.

failure

Fires if the layer source fails to load.

ready

Fires when the layer source is ready for action.