Page 1 of 1

Google Maps on Mobile

Posted: Wed Aug 22, 2012 2:35 pm
by cbarnhart
I think this might be an easy one...at least I am hoping.... I have a simple program at is using static google maps. It works great on the computer, but when I run it on a mobile device I get no maps.
on mouseUp
put gAddress1&","&gCity&","&gState into lcenter
replace " " with "+" in lcenter
put "http://maps.googleapis.com/maps/api/sta ... nsor=false" into centerUrl
put url centerUrl into hImage
put hImage into image "Map"
end mouseUp

Any suggestions?

Re: Google Maps on Mobile

Posted: Wed Aug 22, 2012 10:02 pm
by Mark
Hi,

The URL you're trying to load is not an image. It is a website. An image object doesn't know what to do with HTML code. Use a web viewer instead.

You should probably have asked this question in either the iOS or the Android section of this forum.

Kind regards,

Mark