This is my JavaScript button:
<input type="button" onclick="map.setView({ center : new Microsoft.Maps.Location(48.857, 2.333), zoom: 13})" value="Paris"/>
I would like to create a URL for this button i.e. GitHub.com/paris.
I have received the following advice:
If you want a URL to a map on your page you can use query parameters and then parse those and process them as needed.
Any advice on how to do this would be much appreciated.