JavaScript: Add marker function on Google Map
Problem :
You want to create add marker Javascript function to put markers on Google Map canvas. How to do that?
Solution :
Below is a code fragment from previous tutorial on how to convert IP address to location in Golang.
var map;
function showMap(latitude, longitude, ipaddress) {
var pos = new google.maps.LatLng(latitude, longitude);
var mapOptions = {
zoom: 5,
center: pos,
mapTypeId: google.maps.MapTypeId.ROADMAP,
content: 'Location found by IP Address'
};
var mapDiv = document.getElementById("map-canvas");
map = new google.maps.Map(mapDiv, mapOptions);
var title = ipaddress + " location";
addMarker(map, pos, title, "");
}
function addMarker(map, latlong, title, content) {
var markerOptions = {
position: latlong,
map: map,
title: title,
clickable: true
};
var marker = new google.maps.Marker(markerOptions);
}
Hope this helps and happy coding!
References :
https://developers.google.com/maps/documentation/javascript/examples/marker-simple
https://www.socketloop.com/tutorials/golang-find-location-by-ip-address-and-display-with-google-map
See also : Golang : Find location by IP address and display with Google Map
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+18.2k Golang : Check if a directory exist or not
+32.3k Golang : Validate email address with regular expression
+3.8k Java : Random alphabets, alpha-numeric or numbers only string generator
+37.8k Golang : Comparing date or timestamp
+8.3k Golang : Reverse text lines or flip line order example
+8.7k Golang : Another camera capture GUI application with GTK and OpenCV
+6.3k Golang & Javascript : How to save cropped image to file on server
+6.7k Golang : How to determine if request or crawl is from Google robots
+12.2k Golang : Sort and reverse sort a slice of runes
+9.2k Golang : Capture text return from exec function example
+10.7k Golang : Simple File Server
+7.4k Golang : How to iterate a slice without using for loop?