-
Notifications
You must be signed in to change notification settings - Fork 455
/
Copy pathLarge GeoJSON Files.html
201 lines (164 loc) · 8.29 KB
/
Large GeoJSON Files.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
<!DOCTYPE html>
<html lang="en">
<head>
<title>Large GeoJSON Files - Azure Maps Web SDK Samples</title>
<meta charset="utf-8" />
<link rel="shortcut icon" href="/favicon.ico"/>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta name="description" content="This sample demonstrates loading large GeoJSON files into the Azure Maps Web SDK." />
<meta name="keywords" content="Microsoft maps, map, gis, API, SDK, symbol, pushpin, marker, pin, line, linestring, polygon, parcels" />
<meta name="author" content="Microsoft Azure Maps" /><meta name="version" content="1.0" />
<meta name="screenshot" content="screenshot.jpg" />
<!-- Add references to the Atlas Map control JavaScript and CSS files. -->
<link href="https://atlas.microsoft.com/sdk/javascript/mapcontrol/3/atlas.min.css" rel="stylesheet" />
<script src="https://atlas.microsoft.com/sdk/javascript/mapcontrol/3/atlas.min.js"></script>
<script>
var map, datasource, infopane, completed = 0, featureCnt = 0, totalFileSize = 0;
var geoJsonData = [
{ name: 'Parcel Boundaries', url: '/data/geojson/parcels.json', fileSizeMB: 80, geomType: 'polygons' },
{ name: 'Streets', url: '/data/geojson/streets.json', fileSizeMB: 16, geomType: 'lines' },
{ name: 'Addresses', url: '/data/geojson/address.json', fileSizeMB: 41, geomType: 'points' }
];
function getMap() {
//Initialize a map instance.
map = new atlas.Map('myMap', {
center: [-105.076, 40.55],
zoom: 11,
view: 'Auto',
//Add authentication details for connecting to Azure Maps.
authOptions: {
//Use Microsoft Entra ID authentication.
authType: 'anonymous',
clientId: 'e6b6ab59-eb5d-4d25-aa57-581135b927f0', //Your Azure Maps client id for accessing your Azure Maps account.
getToken: function (resolve, reject, map) {
//URL to your authentication service that retrieves an Microsoft Entra ID Token.
var tokenServiceUrl = 'https://samples.azuremaps.com/api/GetAzureMapsToken';
fetch(tokenServiceUrl).then(r => r.text()).then(token => resolve(token));
}
//Alternatively, use an Azure Maps key. Get an Azure Maps key at https://azure.com/maps. NOTE: The primary key should be used as the key.
//authType: 'subscriptionKey',
//subscriptionKey: '[YOUR_AZURE_MAPS_KEY]'
}
});
infopane = document.getElementById('infopane');
//Wait until the map resources are ready.
map.events.add('ready', function () {
//Create a data source to store the data in.
datasource = new atlas.source.DataSource();
map.sources.add(datasource);
//Add a layer for rendering the outline of polygons.
var polygonLayer = new atlas.layer.LineLayer(datasource, null, {
strokeColor: 'black',
filter: ['any', ['==', ['geometry-type'], 'Polygon'], ['==', ['geometry-type'], 'MultiPolygon']] //Only render Polygon or MultiPolygon in this layer.
});
//Add a click event to the layer.
map.events.add('click', polygonLayer, featureClicked);
//Add a layer for rendering line data.
var lineLayer = new atlas.layer.LineLayer(datasource, null, {
strokeColor: 'purple',
strokeWidth: 4,
filter: ['any', ['==', ['geometry-type'], 'LineString'], ['==', ['geometry-type'], 'MultiLineString']] //Only render LineString or MultiLineString in this layer.
});
//Add a click event to the layer.
map.events.add('click', lineLayer, featureClicked);
//Add a layer for rendering point data.
var pointLayer = new atlas.layer.SymbolLayer(datasource, null, {
iconOptions: {
allowOverlap: true,
ignorePlacement: true,
image: 'pin-round-darkblue'
},
filter: ['any', ['==', ['geometry-type'], 'Point'], ['==', ['geometry-type'], 'MultiPoint']] //Only render Point or MultiPoints in this layer.
});
//Add a click event to the layer.
map.events.add('click', pointLayer, featureClicked);
//Add all layers to the map.
map.layers.add([polygonLayer, lineLayer, pointLayer]);
//Load the GeoJSON feeds.
loadGeoJsonFile(geoJsonData[0]);
loadGeoJsonFile(geoJsonData[1]);
loadGeoJsonFile(geoJsonData[2]);
});
}
function loadGeoJsonFile(geoJsonFeed) {
infopane.innerHTML += 'Downloading ' + geoJsonFeed.name + '...</br/>';
//Download the GeoJSON feed.
datasource.importDataFromUrl(geoJsonFeed.url).then(function () {
var numFeatures = datasource.getShapes().length;
infopane.innerHTML += `Retrieved ${(numFeatures - featureCnt).toLocaleString()} ${geoJsonFeed.geomType} (${geoJsonFeed.fileSizeMB} MB)<br/>`;
featureCnt = numFeatures;
totalFileSize += geoJsonFeed.fileSizeMB;
completed++;
if (completed === geoJsonData.length) {
infopane.innerHTML += `Rendering ${featureCnt.toLocaleString()} features (${totalFileSize} MB)...`;
}
});
}
function featureClicked(e) {
//Make sure the event occurred on a shape feature.
if (e.shapes && e.shapes.length > 0) {
//By default, show the popup where the mouse event occurred.
var pos = e.position;
var offset = [0, 0];
var properties;
if (e.shapes[0] instanceof atlas.Shape) {
properties = e.shapes[0].getProperties();
//If the shape is a point feature, show the popup at the points coordinate.
if (e.shapes[0].getType() === 'Point') {
pos = e.shapes[0].getCoordinates();
offset = [0, -18];
}
} else {
properties = e.shapes[0].properties;
//If the shape is a point feature, show the popup at the points coordinate.
if (e.shapes[0].type === 'Point') {
pos = e.shapes[0].geometry.coordinates;
offset = [0, -18];
}
}
//Update the content and position of the popup.
popup.setOptions({
//Create a table from the properties in the feature.
content: atlas.PopupTemplate.applyTemplate(properties),
position: pos,
pixelOffset: offset
});
//Open the popup.
popup.open(map);
}
}
</script>
<style>
#myMap {
position: relative;
width: calc(100% - 210px);
min-width:290px;
height: 600px;
float: left;
}
#infopane {
margin-left: 10px;
width: 200px;
height: 600px;
overflow-y: auto;
float: left;
}
table {
border-collapse: collapse;
}
table, th, td {
border: 1px solid black;
}
</style>
</head>
<body onload="getMap()">
<div id="myMap"></div>
<div id="infopane"></div>
<div style="clear:both;"></div>
<fieldset style="width:calc(100% - 30px);min-width:290px;margin-top:10px;">
<legend>Large GeoJSON Files</legend>
This sample loads three large GeoJSON files which contain address (point), parcel boundary (polygon), and street (lines) data for all of Fort Collins, CO.<br/><br/>
This sample loads a lot of data and will be slow to load.
</fieldset>
</body>
</html>