Anyone please help me to obtain a dynamic map url for the following static map url.
http://maps.google.com/maps/api/staticmap?center=59.4,43.4&map_type=SATELLITE&markers=color:blue|label:b|59.4,43.4&sensor=false&size=400×300&zoom=10
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
There’s a list of Google Map parameters at http://mapki.com/wiki/Google_Map_Parameters — too many to copy out and list in an answer here.
Your map would be http://maps.google.com/maps?q=59.4,43.4&t=k&z=10
Note: It’s not possible to specify a particular marker in Google Maps, so there’s no parameter for a blue marker. And your
map_type=SATELLITEin your URL should bemaptype=satellite: no underscore and lower-case. Thet=kin the Maps URL specifies satellite view.If you want to embed it in your site, the
<iframe>code needed is<iframe width="400" height="300" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com/maps?q=59.4,43.4&t=k&ie=UTF8&z=10&output=embed"></iframe><br /><small><a href="http://maps.google.com/maps?q=59.4,43.4&t=k&ie=UTF8&z=10&source=embed" style="color:#0000FF;text-align:left">View Larger Map</a></small>