-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathindex.js
More file actions
27 lines (27 loc) · 895 Bytes
/
index.js
File metadata and controls
27 lines (27 loc) · 895 Bytes
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
"use strict";
/**
* @license
* Copyright 2019 Google LLC. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0
*/
// [START maps_layer_data_style]
async function initMap() {
(await google.maps.importLibrary('maps'));
const mapElement = document.querySelector('gmp-map');
const innerMap = mapElement.innerMap;
// [START maps_layer_data_style_script_snippet_load]
// Load GeoJSON.
google.maps.event.addListenerOnce(innerMap, 'idle', () => {
innerMap.data.loadGeoJson('google.json');
});
// [END maps_layer_data_style_script_snippet_load]
// [START maps_layer_data_style_script_snippet_style]
// Set the stroke width, and fill color for each polygon
innerMap.data.setStyle({
fillColor: 'green',
strokeWeight: 1,
});
// [END maps_layer_data_style_script_snippet_style]
}
initMap();
// [END maps_layer_data_style]