Bing Map Services in sharepoint online
<!DOCTYPE html> <html> <head> <title></title> <meta charset="utf-8" /> <script type='text/javascript'> function GetMap() { var map = new Microsoft.Maps.Map('#myMap', {}); //Request the user's location navigator.geolocation.getCurrentPosition(function (position) { var loc = new Microsoft.Maps.Location( position.coords.latitude, position.coords.longitude); //Add a pushpin at the user's location. var pin = new Microsoft.Maps.Pushpin(loc); map.entities.push(pin); //Center the map...