JavaScript/jQuery VectorMap - projection
Specifies the map projection.
Default Value: 'mercator'
Accepted Values: 'equirectangular' | 'lambert' | 'mercator' | 'miller'
Cannot be used in themes.
You can use one of the following out-of-the-box projections:
- Mercator projection
- Equirectangular projection
- Lambert cylindrical projection
- Miller cylindrical projection
To set a custom projection, implement two functions (from and to) that convert coordinates between geographical and UI component coordinate systems. In addition, set the projection's aspectRatio.
aspectRatio
Specifies the projection's ratio of the width to the height.
Type:
Default Value: 1
Extreme points of the UI component coordinate system form a square. Set this property to change the projection's form; for example, make the width more than height.
from
Converts coordinates from [x, y] to [lon, lat].
to
Converts coordinates from [lon, lat] to [x, y].
Type:
Function parameters:
Two coordinates that represent a point in the dataSource coordinate system.
Feedback