Populate data in EJ2 TypeScript Maps control
27 Apr 202323 minutes to read
This section explains how to populate data inputs and provide it to the Maps component.
Geometry types
GeoJSON data contains geometry objects with properties such as geometry types and coordinates. The geometry types are the values present in the geometry objects of the GeoJSON data that specify the type of shape to be rendered, as well as the coordinates that help to draw the shape’s boundary line. The supportive geometry types are:
Shapes | Supported |
---|---|
Polygon | Yes |
MultiPolygon | Yes |
LineString | Yes |
MultiLineString | Yes |
Point | Yes |
MultiPoint | Yes |
GeometryCollection | Yes |
Shape data
The shape data collection describes geographical shape information that can be obtained from GEOJSON format shapes. The Map shapes are rendered with this data. The custom shapes such as seat selection in bus, seat selection in a cricket stadium and more useful information can be also added to the geographical data.
export let usMap = //Paste all the content copied from the JSON file.
Data source
The dataSource
property is used to represent statistical data in the Maps component, and it accepts a collection of values as input. For example, a list of objects as input can be provided to the data source. This data source will be used to color the map, display data labels, and display tooltip, among other things.
The data source is populated with JSON data relative to shape data and stored in JSON object. The USA population as data source is used for better understanding. The populationData.ts file is used to store JSON data in JSON object populationData.
[populationData.ts]
export let populationData: object[] = [
{
'code': 'AF',
'value': 53,
'name': 'Afghanistan',
'population': 29863010,
'density': 119
},
{
'code': 'AL',
'value': 117,
'name': 'Albania',
'population': 3195000,
'density': 111
},
{
'code': 'DZ',
'value': 15,
'name': 'Algeria',
'population': 34895000,
'density': 15
},
{
'code': 'AO',
'value': 15,
'name': 'Angola',
'population': 18498000,
'density': 15
},
{
'code': 'AR',
'value': 15,
'name': 'Argentina',
'population': 40091359,
'density': 14
},
{
'code': 'AM',
'value': 109,
'name': 'Armenia',
'population': 3230100,
'density': 108
}
];
Data binding
The following properties in the layers
are used for binding data in the Maps component. Both the properties are related to each other.
- shapePropertyPath
- shapeDataPath
Shape property path
The shapePropertyPath
property is used to refer to the column name in the shapeData
property of shape layers to identify the shape. When the values of shapeDataPath
property from the dataSource
property and shapePropertyPath
property from the shapeData
property match, then the associated object from the data source is bound to the corresponding shape.
world-map.ts
file contains following data and its field name value is used to map the corresponding shape with the provided data source.
export let world_map: object = {
"type": "Feature",
"properties": {
"admin": "Afghanistan",
"name": "Afghanistan",
"continent": "Asia"
},
"geometry": { "type": "Polygon", "coordinates": [[[61.21081709172573, ... },
...
Shape data path
The shapeDataPath
property is similar to the shapePropertyPath
property, but it refers to the field name in the dataSource
property. For example, populationData contains the code, value, name, population and density fields. Here, the name field is set to the shapeDataPath to map the corresponding name field value of shape data.
In the below example, both name fields contain the same value as Afghanistan, this value is matched in both shape data and data source, so that the details associated with Afghanistan will be mapped to the corresponding shape and used to color the corresponding shape, display data labels, display tooltips, and more.
import { world_map } from './world-map.ts';
import { Maps} from '@syncfusion/ej2-maps';
let map: Maps = new Maps({
layers: [{
shapeData: world_map,
shapeDataPath: 'name',
shapePropertyPath: 'name',
dataSource: [
{
'code': 'AF',
'value': 53,
'name': 'Afghanistan',
'population': 29863010,
'density': 119,
'color': '#DEEBAE'
},
{
'code': 'AL',
'value': 117,
'name': 'Albania',
'population': 3195000,
'density': 111,
'color': '#A4D6AD'
},
{
'code': 'DZ',
'value': 15,
'name': 'Algeria',
'population': 34895000,
'density': 15,
'color': '#37AFAB'
},
{
'code': 'AO',
'value': 15,
'name': 'Angola',
'population': 18498000,
'density': 15,
'color': '#547C84'
},
{
'code': 'AR',
'value': 15,
'name': 'Argentina',
'population': 40091359,
'density': 14,
'color': '#CEBF93'
},
{
'code': 'AM',
'value': 109,
'name': 'Armenia',
'population': 3230100,
'density': 108,
'color': '#a69d70'
}
],
shapeSettings: {
colorValuePath: 'color',
fill: '#E5E5E5'
}
}]
});
map.appendTo('#element');
<!DOCTYPE html>
<html lang="en">
<head>
<title>EJ2 Maps</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Typescript UI Controls" />
<meta name="author" content="Syncfusion" />
<link href="index.css" rel="stylesheet" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/systemjs/0.19.38/system.js"></script>
<script src="world-map.js"></script>
<script src="usa.js"></script>
<script src="systemjs.config.js"></script>
<script src="https://cdn.syncfusion.com/ej2/syncfusion-helper.js" type ="text/javascript"></script>
</head>
<body>
<div id='loader'>Loading....</div>
<div id='container' style="height: 500px; width: 700px">
<div id='element'></div>
</div>
</body>
</html>
Binding complex data source
To bind the data field from data source to the Maps in two different ways.
-
Bind the field name directly to the properties as
shapeDataPath
,colorValuePath
,valuePath
andshapeValuePath
. -
Bind the field name as
data.field
to the properties asshapeDataPath
,colorValuePath
,valuePath
andshapeValuePath
.
import { world_map } from './world-map.ts';
import { Maps, Marker, Bubble, MapsTooltip} from '@syncfusion/ej2-maps';
Maps.Inject(Marker, Bubble, MapsTooltip);
let map: Maps = new Maps({
layers: [
{
shapeData: world_map,
shapeDataPath: 'data.continent',
shapePropertyPath: 'continent',
dataSource: [
{ "Continent": "North America", 'color': '#71B081',
data: { "continent": "North America", 'color': '#71B081' }
},
{ "Continent": "South America", 'color': '#5A9A77',
data: { "continent": "South America", 'color': '#5A9A77' }
},
{ "Continent": "Africa", 'color': '#498770',
data: { "continent": "Africa", 'color': '#498770' }
},
{ "Continent": "Europe", 'color': '#39776C',
data: { "continent": "Europe", 'color': '#39776C' }
},
{ "Continent": "Asia", 'color': '#266665',
data: { "continent": "Asia", 'color': '#266665' }
},
{ "Continent": "Australia", 'color': '#124F5E',
data: { "continent": "Australia", 'color': '#124F5E' }
}
],
shapeSettings: {
colorValuePath: 'data.color',
},
tooltipSettings: {
visible: true,
valuePath: 'data.continent'
},
bubbleSettings: [
{
visible: true,
valuePath: 'data.value',
colorValuePath: 'data.color',
animationDuration: 0,
minRadius: 20,
maxRadius: 90,
opacity: 0.8,
dataSource: [
{ 'name': 'India', 'value': 18.89685398845257, 'population': 391292635,
data: { 'color': 'red', 'population': 391292635, 'value': 189685398845257 }
}
],
tooltipSettings: {
visible: true,
valuePath: 'data.population',
template:"<div>${data.population}</div>"
}
}
],
markerSettings: [
{
visible: true,
dataSource: [
{ latitude: 37.6276571, longitude: -122.4276688, name: 'San Bruno',
data: { x: 37.6276571, y: -122.4276688, name: 'San Bruno', shape: 'Pentagon',
color: 'red', imageUrl: 'images/ballon.png' }
},
{ latitude: 33.5302186, longitude: -117.7418381, name: 'Laguna Niguel',
data: { x: 33.5302186, y: -117.7418381, name: 'Laguna Niguel', color: 'blue',
shape: 'Pentagon', imageUrl: 'images/ballon.png' }
}
],
shapeValuePath: "data.shape",
colorValuePath: "data.color",
height: 20,
width: 20,
offset: {
y: -10,
x: 0
},
longitudeValuePath: "data.y",
latitudeValuePath: "data.x",
tooltipSettings: {
visible: true,
valuePath: 'data.name',
format: "${data.name}: ${data.x} : ${data.y}"
},
animationDuration: 0
}
]
}]
});
map.appendTo('#element');
<!DOCTYPE html>
<html lang="en">
<head>
<title>EJ2 Maps</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Typescript UI Controls" />
<meta name="author" content="Syncfusion" />
<link href="index.css" rel="stylesheet" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/systemjs/0.19.38/system.js"></script>
<script src="world-map.js"></script>
<script src="usa.js"></script>
<script src="systemjs.config.js"></script>
<script src="https://cdn.syncfusion.com/ej2/syncfusion-helper.js" type ="text/javascript"></script>
</head>
<body>
<div id='loader'>Loading....</div>
<div id='container' style="height: 500px; width: 700px">
<div id='element'></div>
</div>
</body>
</html>