You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
let marker = new google.maps.Marker({
position: latlng,
place: {
placeId: data.address.place_id,
location: latlng
},
optimized: ! isIE // makes SVG icons work in IE
});
Renders just fine if it's commented out, though:
let marker = new google.maps.Marker({
position: latlng,
// place: {
// placeId: data.address.place_id,
// location: latlng
// },
optimized: ! isIE // makes SVG icons work in IE
});
The text was updated successfully, but these errors were encountered:
ggets
changed the title
Spiral is breaking if 'place' object is present in marker option
Spiral is broken if 'place' object is present in marker option
May 23, 2021
Renders just fine if it's commented out, though:
The text was updated successfully, but these errors were encountered: