I am attempting to add a marker and then center on it from one action (right click) with gmaps.js in HTML. I have it working so when i right click it will add the new marker however i am unable to find a way to add the marker and center on the new marker at the same time. see below:
map.addMarker({
lat: -38.059648,
lng: 144.33451,
title: "title",
icon: 'blah',
infoWindow: {
content:'blah'
},
rightclick: function(e){
map.addMarker({
lat: -31.958337,
lng: 115.821954,
title: "title",
icon: 'icon',
infoWindow: {
content:"blah"
}
});
}