Information on this website refers to a deprecated product, and is provided only for historical reference. Please use the Version Switcher above to select an appropriate documentation website for the product you are using.

MapData

Type class

MapData is a class which holds all the data - arrays of images, areas and lines.

Inheritance

MapData extends MapObject.

MapData is not extended by any other symbol.

Properties

areas
#

Type array

Array of MapArea objects.

bottomLatitude
#

Type number

Default -90

Latitude of bottom-most point of a map. All maps in amMap package have this information hardcoded in SVG file.

getAreasFromMap
#

Type boolean

Default false

If you set this to true, all areas available in SVG map will be created automatically.

leftLongitude
#

Type number

Default -180

Longitude of left-most point of a map. All maps in amMap package have this information hardcoded in SVG file.

mapURL
#

Type string

Path to map SVG file. Use it if you don't include map as .js file. Loading SVG is a bit risky, as some browsers might not do this correctly - it depends on server configuration. We recommend to include maps as .js files. Application won't load svg files from hard drive, so you can test this only on web server.

mapVar
#

Type Variable

In case you included map as js file, you should specify variable name of a map. Open your map.js file and copy variable name, for example: AmCharts.maps.worldLow

projection
#

Type string

Default mercator

Projection of the map. Projection can be also set in SVG map - all svg maps which are distributed with amMap have projection set in SVG. AmMap supports Mercator projection and simple XY projection.

rightLongitude
#

Type number

Default 180

Longitude of right-most point of a map. All maps in amMap package have this information hardcoded in SVG file.

topLatitude
#

Type number

Default 90

Latitude of top-most point of a map. All maps in amMap package have this information hardcoded in SVG file.

alpha
#

Type number

Inherited from MapObject

Opacity of map object.

balloonText
#

Type string

Inherited from MapObject

Text which is displayed in a roll-over balloon. You can use the following tags: [[title]], [[description]], [[value]] and [[percent]].

color
#

Type string

Inherited from MapObject

Color of MapObject

customData
#

Type object

Inherited from MapObject

A custom data holder.

description
#

Type string

Inherited from MapObject

Description of MapObject. Description is displayed in DescriptionWindow (when user clicks on an object). It can also be displayed in a roll-over balloon. DescriptionWindow can display HTML formatted code.

descriptionWindowHeight
#

Type number

Inherited from MapObject

Height of description window.

descriptionWindowWidth
#

Type number

Inherited from MapObject

Width of description window.

descriptionWindowX
#

Type number

Inherited from MapObject

X position of description window. In case it is not set, window will be placed near the mouse pointer.

descriptionWindowY
#

Type number

Inherited from MapObject

X position of description window. In case it is not set, window will be placed near the mouse pointer.

fixedSize
#

Type boolean

Default true

Inherited from MapObject

Specifies if the object should change the size together with the map or keep fixed size. This applies for objects with lat and long properties set, as they move together with the map.

groupId
#

Type string

Inherited from MapObject

Id of a group. You can group MapObjects to groups. Grouped objects will change color together with this object when you roll-over it or click it. You can show/hide them using showGroup(groupId) and hideGroup(groupId) methods of AmMap class. You can also use map.zoomToGroup(groupId) methot to zoom-in the map so that all grouped objects are visible.

id
#

Type string

Inherited from MapObject

Unique id of the object. In case it's area, id should match svg path id from SVG file. Id can be used with linkToObject property of MapObject - you can link one object to another using it.

images
#

Type array

Inherited from MapObject

Array of MapImage objects.

lines
#

Type array

Inherited from MapObject

Array of MapLine objects.

linkToObject
#

Type MapObject

Inherited from MapObject

linkToObject can be a reference or id of some other MapObject - MapArea, MapImage or MapLine. It can also be a reference to another DataSet (but not an id). Then user clicks on this object the application would zoom-in to this objects' zoom position (if it is set) and then act as if the linkToObject was clicked. This can also be used for selecting the object you want to be selected right after the map is initialized, as DataSet extends MapObject class, you can specify linkToObject for your DataSet. When you link to another DataSet, you can build drill-down maps.

mouseEnabled
#

Type boolean

Default true

Inherited from MapObject

Set this to false to make the object be irresponsive to any interactions like hover or click events.

objectType
#

Type string

Inherited from MapObject

Read-only, type of the Object. Possible values are: "DataSet", "MapImage", "MapLine" and "MapArea".

passZoomValuesToTarget
#

Type boolean

Default false

Inherited from MapObject

Specifies if current zoom values should be passed to target MapObject. Useful when building drill down maps.

remainVisible
#

Type boolean

Default true

Inherited from MapObject

Specifies if the MapObject and other objects of the same level should remain visible if it was clicked and it has children MapObjects.

rollOverColor
#

Type string

Inherited from MapObject

Roll over color of of the object.

selectable
#

Type boolean

Default false

Inherited from MapObject

Specifies if the object can be selected even if it is not clickable. Map object is clickable if zoom properties are set or it has description or has children objects. Sometimes even non of the listed conditions is met you might need it to be clickable. You should set this property to true in this case.

selectedColor
#

Type string

Inherited from MapObject

Color of an object when it is selected (somebody clicked on it).

showAsSelected
#

Type boolean

Default false

Inherited from MapObject

Specifies if selectedColor should be applied to the object. AmMap can have only one selected item at a time, however there might be situations when multiple objects (areas, movies, lines) have to look like they are selected. By setting this property to true, you will be able to produce this result.

showInList
#

Type boolean

Inherited from MapObject

Specifies if this object must be displayed in ObjectsList Title should be defined in order the object to appear there.

title
#

Type string

Inherited from MapObject

Title of a MapObject. It can be displayed in the roll-over balloon and in the header of description window. All areas in SVG maps distributed with amMap has country names (titles) hard coded in the SVG file.

url
#

Type string

Inherited from MapObject

Url of an object. The application will go to this url when you click on the object.

urlTarget
#

Type string

Default _self

Inherited from MapObject

Target of an URL, if URL is a string, for example: "_blank", "_top".

useTargetsZoomValues
#

Type boolean

Default false

Inherited from MapObject

Specifies if MapObject's, specified in the url zoom values should be used. Useful when building drill down maps.

zoomLatitude
#

Type number

Inherited from MapObject

Specifies latitude to which map should be moved when this object is clicked

zoomLevel
#

Type number

Inherited from MapObject

Specifies map scale to which map should be rescaled when this object is clicked.

zoomLongitude
#

Type number

Inherited from MapObject

Specifies longitude to which map should be moved when this object is clicked.

zoomX
#

Type number

Inherited from MapObject

Specifies x position (in percents of stage width) to which map should be moved when this object is clicked. You can also use zoomLat and zoomLong instead of zoomY and zoomY.

zoomY
#

Type number

Inherited from MapObject

Specifies y position (in percents of stage height) to which map should be moved when this object is clicked. You can also use zoomLat and zoomLong instead of zoomY and zoomY.

There are 33 inherited items currently hidden from this list.

Methods

MapData does not have any methods.

Events

MapData does not have any events.

Adapters

MapData does not have any adapters.