-
Notifications
You must be signed in to change notification settings - Fork 0
/
map-import-geojson.html
60 lines (52 loc) · 1.27 KB
/
map-import-geojson.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
<!DOCTYPE html>
<html>
<head>
<title>Data Layer: Styling</title>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no">
<meta charset="utf-8">
<style>
html, body, #map-canvas {
height: 100%;
margin: 0px;
padding: 0px
}
</style>
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp"></script>
<script>
var map;
function initialize() {
map = new google.maps.Map(document.getElementById('map-canvas'), {
zoom: 2,
center: {lat: -28, lng: 137.883}
});
// [START snippet-load]
// Load GeoJSON.
map.data.loadGeoJson('gc.json');
// [END snippet-load]
// [START snippet-style]
// Set the stroke width, and fill color for each polygon
var featureStyle = {
fillColor:"blue"
}
map.data.setStyle(featureStyle);
// [END snippet-style]
console.log(map.data.getStyle());
// JS is asynchronous
setTimeout(function() {
map.data.forEach(function(el) {
el.forEachProperty(function(p, q) {
console.log(p + " " + q);
}
)
}
)
console.log(map.data.getFeatureById("test"));
}, 500);
}
google.maps.event.addDomListener(window, 'load', initialize);
</script>
</head>
<body>
<div id="map-canvas"></div>
</body>
</html>