const myCoordinates = {lat: -41.2847, lng: 174.7681}; const map = new google.maps.Map( document.querySelector('#map-container'), center: myCoordinates, zoom: 16 );
const myCoordinates = {lat: -41.2847, lng: 174.7681};
const map = new google.maps.Map(
document.querySelector('#map-container'),
center: myCoordinates,
zoom: 16
);
const myCoordinates = {lat: -41.2847, lng: 174.7681}; const lcMapView = new google.maps.localContext.LocalContextMapView({ element: document.querySelector('#map-container'), placeTypePreferences: [ 'bakery', 'cafe', 'clothing_store', 'drugstore', 'park', 'restaurant', 'shopping_mall', 'tourist_attraction', 'university' ], maxPlaceCount: 24, }); const map = lcMapView.map; map.setOptions({ center: myCoordinates, zoom: 16 });
const lcMapView = new google.maps.localContext.LocalContextMapView({
element: document.querySelector('#map-container'),
placeTypePreferences: [
'bakery', 'cafe', 'clothing_store', 'drugstore', 'park',
'restaurant', 'shopping_mall', 'tourist_attraction', 'university'
],
maxPlaceCount: 24,
});
const map = lcMapView.map;
map.setOptions({