Hello,
“map” property of “google-map” view refers to google map object. So, you can useGoogleMap API:
var map = $$("mymap").map;
var marker= new google.maps.Marker({
map: map,
...
};
Please see details in google dev docs:
Hello,
“map” property of “google-map” view refers to google map object. So, you can useGoogleMap API:
var map = $$("mymap").map;
var marker= new google.maps.Marker({
map: map,
...
};
Please see details in google dev docs: