Add marker to Google Map

Hi there.  I am creating an iPad app with In Design CS5.5. I want to add a link from an image with a button to a Google map showing where the image was taken. I can successfully add the map and load it but I cannot find out how to add the marker showing the exact location. I also want earth view to appear rather than street maps.  Hope somebody can help.  Many thanks in advance.  Ian Brodie

Hi Ian
Dont know if this will help, but this pages shows how to define a url to a specific point on a map, ie with postcodes etc
Cheers
Alistair
https://developer.apple.com/library/ios/#featuredarticles/iPhoneURLScheme_Reference/Articl es/MapLinks.html%23//apple_ref/doc/uid/TP40007894-SW1

Similar Messages

  • Map marker + geolocation (google maps)

    I'm currently working on embedding a google map in my app. The geolocating already works ( I used this code: DPS Tips HTML5 Examples, thanks Bob!), but I just can't add markers to the map. I tried different codes but none seem to work. I would also need the markers to have their names shown (e.g. hotspot 1, hotspot 2).
    Has anyone here found a solution for this and would be kind enough to share?
    Thanks in advance!

    hi! I used the code for geolocation from the link above, and this code for the marker: Simple markers - Google Maps JavaScript API v3 — Google Developers
    It both works independently, but I can't mix them. I also can't find a way to modify my marker ( own icon) and add an info box. 
    I tried some of the following links to try and work those aspects to the marker file, if it helps with finding a solution:
    LabeledMarker Documentation: Examples
    Adding dynamic content to Google Maps marker - Stack Overflow
    map-geolocation-with-fancy-marker.html - gmaps-samples-v3 - Google Maps API v3 Sample Code - Google Project Hosting

  • Add multiple location google map

    How can I add a Google map with more than one location. I have 2 biz locations, but I do not see a way to have multiple biz locations on same map. Can I have more than one address? How do I do it?

    Hi David,
    There is no out of the box solution for this in Muse. I'll leave this discussion open for other members to reply with the workaround they have, if any.
    Regards,
    Aish

  • Adobe Widget browser "Google Map" Search box for address

    First of all I would like to thank Zizzer Zazzer for this google map. I ts really very helpful for the website. I was wondering if this is possible to add text search box for the address in google map? I was trying my self and tried with geocode with no success.If any one of you know about this then plz let me know. Here is my code
    <input type="text" id="search_address" value="" size="98"/>
    <button onclick="search();">Search</button>
      <div id="mapCanvas" style="width:100%; height:100%; min-width:300px; min-height:300px"></div>
    <script type="text/javascript">
    // initialize the google Maps 
         function initializeGoogleMap() {
      // set latitude and longitude to center the map around
      var latlng = new google.maps.LatLng(37.77,
               -122.4);
      // set up the default options
      var myOptions = {
        zoom: 8,
        center: latlng,
        navigationControl: true,
        navigationControlOptions:
         {style: google.maps.NavigationControlStyle.DEFAULT,
        position: google.maps.ControlPosition.TOP_LEFT },
        mapTypeControl: true,
        mapTypeControlOptions:
         {style: google.maps.MapTypeControlStyle.DEFAULT,
        position: google.maps.ControlPosition.TOP_RIGHT },
        scaleControl: true,
         scaleControlOptions: {
              position: google.maps.ControlPosition.BOTTOM_LEFT
        mapTypeId: google.maps.MapTypeId.ROADMAP,
        draggable: true,
        disableDoubleClickZoom: false,
        keyboardShortcuts: true
      var map = new google.maps.Map(document.getElementById("mapCanvas"), myOptions);
      if (true) {
       var trafficLayer = new google.maps.TrafficLayer();
       trafficLayer.setMap(map);
      if (true) {
       var bikeLayer = new google.maps.BicyclingLayer();
       bikeLayer.setMap(map);
      if (true) {
       addMarker(map,37.7715,-122.4,"We are here");
       window.onload = initializeGoogleMap();
      // Add a marker to the map at specified latitude and longitude with tooltip
      function addMarker(map,lat,long,titleText) {
        var markerLatlng = new google.maps.LatLng(lat,long);
       var marker = new google.maps.Marker({
            position: markerLatlng,
            map: map,
            title:"We are here",
       icon: ""});  
      var addressField = document.getElementById('search_address');
    var geocoder = new google.maps.Geocoder();
    function search() {
        geocoder.geocode(
            {'address': addressField.value}, 
            function(results, status) { 
                if (status == google.maps.GeocoderStatus.OK) { 
                    var loc = results[0].geometry.location;
                    // use loc.lat(), loc.lng()
                else {
                    alert("Not found: " + status); 

    Come on guys....!!Any one here to answer or any one knows about it?

  • Over query limit while integrating google maps

    Hi
    I am getting over query limit error when i want to display more than 11 records while integrating google maps in obiee. I can display upto 11 records in the map.If i increase the row limit its throwing the error.
    Error: Geocode was not succesfull for the following reason: Over_query_limit
    How to overcome this error,in order to fetch more than 11 records in the map?
    I have only two columns in the report
    state code || No.Of Customers
    In narrative view i have the following code
    Replace ?!? with <
    Prefix part
    ?!?script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false">
    ?!?/script>
    ?!?script type="text/javascript">
    var geocoder;
    var map;
    function initialize() {
    geocoder = new google.maps.Geocoder();
    var latlng = new google.maps.LatLng(37.4219720, -122.0841430);
    var myOptions = {
    zoom: 8,
    center: latlng,
    mapTypeId: google.maps.MapTypeId.ROADMAP
    map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);
    GetMapAdress ();
    function showAddress(address,comment) {
    if (geocoder) {
    geocoder.geocode( { 'address': address}, function(results, status) {
    if (status == google.maps.GeocoderStatus.OK) {
    map.setCenter(results[0].geometry.location);
    var marker = new google.maps.Marker({
    map: map,
    position: results[0].geometry.location
    var infowindow = new google.maps.InfoWindow({
    content:comment
    google.maps.event.addListener(marker, 'click', function() {
    infowindow.open(map,marker);
    } else {
    alert("Geocode was not successful for the following reason: " + status);
    function GetMapAdress (){
    Narrative:
    showAddress('@1', ' No Of customers are @2');
    Postfix part:
    ?!?/script>
    ?!?script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.js" type="text/javascript">?!?/script>
    ?!?script type="text/javascript">
    $(document).ready( function(){initialize();return false;});
    ?!?/script>
    ?!?body onunload="GUnload()">
    ?!?div id="map_canvas" style="width: 800px; height: 700px" > ?!?/div>
    ?!?/body>
    This gives the count as per the state in the google map, if we click a state it will show us the count, but its holding good only for 11 records in the map
    Appreciate your response

    I haven't yet used the tag. It looks quite interesting.
    I had a look at the
    cf_googleMap
    Documentation out of curiosity. Apparently, putting
    <cf_googlemapshow/> at the end, just before the closing body
    tag, solves a number of Javascript issues.

  • Google Maps for Flash in AIR for Android: ~2 minutes to start up

    I have a "Hello World" style AIR for Android app using Flash Builder 4 Burrito/Flex Hero.
    When debugging on device (stock HTC Desire) using Flex version v1.20 of Google Maps for Flash (map_flex_1_20.swc), it takes 1 minute and 50 seconds for the app to startup to display a simple map:Map3D on the home screen. The same app without the map:Map3D object starts in just a few seconds.
    There are no startup delays using the simulator.
    Anyone know what might be causing the severe startup delay when running on device?
    Thanks,
    Stephen

    Hi - yes no problem: I've uploaded a sample app here: http://crackedfrog.com/files/AndroidAIRMap.zip.
    You'll need to add a valid Google Maps API key and corresponding URL back into the maps:Map3D object:
    <maps:Map3D left="0" right="0" top="0" bottom="0"
      xmlns:maps="com.google.maps.*" id="map"
      url=""
      key=""
      sensor="false"/>
    This shows the same behaviour as described above - around 2 minutes to start up when debugging on the device.
    Appreciate any help.
    Thanks,
    Stephen

  • How to Show custom image  on Google Map Oracle Apex 4.1 page

    Hi.. All,
    Need to show custom Image (From Database Table which is a BLOB Column) as Marker on Google Map with fixed size if we zoom in or zoom out.
    I am using Apex 4.1 and oracle11g r2.
    Thanks in Advance

    Hello,
    This plugin Does Exactly What You Need.
    http://www.apex-plugin.com/oracle-apex-plugins/item-plugin/extension-warp11-gmaps-item_109.html
    Please read the comments on the plugin, in case you come across problem in running the plugin....
    Best Regards,
    Fateh
    If you believe that my answer was correct, then please mark the answer as correct. This is for the best of all

  • Google Marker clusters (BC Map App)

    Hi guys
    Hoping you can help me with a little problem.
    We have been working with the BC Map App from Kiyuco (http://www.bcmapapp.com) for a couple of months now and it works great, but i am trying to add a new feature and
    it is causing me some problems.
    At the moment i am working on a new client, they have almost 200 resellers in our little country (Denmark),&#8232;and it is hard to get a good overview on the map app, so i was looking into the possibility of using "MarkerCluster" &#8232;function in Google Map, and i am almost there, but i was hoping you could help me with the finishing touches.
    I am running a test here: http://kinnanlg.geniesite.net/forhandlere2013/forhandlere2
    It works OK, but it seems to be running very slow, i am not sure if it is "looping" correct when zooming in/out etc. &#8232;I've been using this example (http://jsfiddle.net/Sas67/3/) and it is running a lot more smoothly even though there are &#8232;more markers.
    Any tips/advice will be greatly appreciated.
    - Please let me know if you need more info

    I finally found the error.
    The Marker Cluster "script" was firing multiple times, instead of just one time.
    I moved it out of the "loop" and now it works!

  • Can't see My add-on icon in google map on Firefox 8, but 7 can. IE does.

    Had i update firefox 7 to 8. the icon in google map which i upload my own icon the mark the map that did not appear on firefox 8?
    btw i am using window 7. please help!

    I have a same problem as you and my solution is. Right click on the bar -> choose customize. Now, you can see all the icons here, just drag the icon of the add-ons you like to the bar > done. You will see it appears again ! Hope that it will help!
    (note: i use PC so i don't know whether it's the same with Mac !

  • Google Maps Widget Not Showing Marker

    I've added the Google Maps Widget to my page, but the marker doesn't show in the map:  http://www.lessue.com/JUNK2GO/les-sue_contact.htm.  The map is positioned correctly but a marker is needed.  addMarker() should be at least be showing "We are Here" according to the script.  I also added my own marker image to the icon:" " attribute thinking I needed to supply it, but that doesn't work either.  What am I missing?  Thank you.

    Here is the documentation for Spry UI Widgets http://labs.adobe.com/technologies/spry/ui/.
    As far as the other widgets are concerned, the author of the widget may be able to help you.
    There is also a forum taht can be found here http://forums.adobe.com/community/labs/widgetbrowser?view=discussions&start=0
    Gramps

  • Google Map Marker Pin at Incorrect Location

    Hi
    Can anyone help regarding why a Google map marker is located off the coast of Africa when I have included the app item location/address details as being in Queensland, Australia?
    It only comes up when a full search is done, when you click the Get Directions links you're taken to the correct map in Google Maps.
    Thanks in advance.
    Tracey
    Reference link:  http://fitgenes.com.au/fcp-locator-state   Do a search on All States, scroll down  and note item #43.

    Hi Mary, I had a problem with Perth as well, but it has somehow resolved itself.
    I did see somewhere that it was an issue with the Google postcode database, but I cant remember where or how to resolve it.
    Thanks

  • Add the google map.

    Good day all!
    I've been trying to add the google map to a flash site. I've
    got it on there but it's in the wrong place it sits on the top of
    the page and I need it to be centered. Under the logo and nav bar.
    You can see it here>
    http://thedesignport.com/Doughboys/Location_Page.html
    Any help? And I would like to add a from/ to search. Can't
    find anything that helps online.
    Thanks all!

    Hello, I am having a similar positioning issue - did you ever
    figure this one out?
    Please let me know how, thanks
    Richard

  • Add a google map to iweb

    How do I add a Google Map widget onto iWeb now that the Mobileme is closed?

    Michael ~ You can save yourself (and others) some time by first searching these Communities for the answer — see bullet point #3 HERE and this tutorial:
    ASC — Searching
    But since you've already posted this, look to the right in the More Like This section.

  • Trying to add exact spot in places, using Google Maps L/L, but places wont

    trying to add exact spot in places, using Google Maps L/L, but places wont find it, just get the spinning circle all the time.
    Ive found it exactly in Google maps, and it gives me a long number but I type into my add new place, and it just hangs there till I cancel it.
    Anyone help me please?
    cheers

    Thanks I just thought that if Im tagging Geo manually, it would be easier to find in google maps in Safari, then copy and paste it in my places.
    So you can only sort f manually do it be finding places, dragging the pin to where you want?
    Suppose it ok this way, was just hoping I could be super accurate.
    cheers

  • Embed HTML Code to Add Google Maps and More | Adobe Muse Feature Tour | Adobe TV

    Add embedded HTML, such as arbitrary code snippets from sources such as Google Maps and YouTube. Use this same feature to add social media buttons and feeds from social media properties and much more.
    http://adobe.ly/I5cS0a

    Can i use only arbitrary code snippets from sources such as Google Maps and YouTube?
    I have a other external code but it doesnt work.

Maybe you are looking for

  • HP Printers - 8000 Pro and Pro 8500A Plus all in one wireless setups

    First, six weeks of customer support has not been able to get my 8500A Plus all-in-one install on my XP Pro SP3 laptop.  I've uninstalled the printer using HP's utility, the Control Panel and still can't install it wireless to this laptop. I am about

  • Why wont my app store on my iphone let me log in?

    dear apple,             i cannot login into my account on my iphone 4. i updated my iphone last night and i lost all my contacts and my apps, i had backed my phone up but it seems too have not worked and my itunes will connect but it will not log non

  • My iPod Touch (4gen) won't sync and update

    I have a 4th generation iPod Touch. Pretty new right? Either way I tried updating to iOS5.0 and it said I had to delete pretty much everything and restore it to the new OS. I did. Unfortunately after it wiped my touch clean, an error occurred. It say

  • Help with PSexec command

    Hi everyone so I have this script that pulls a file from another machine and then unzips it. function Expand-ZIPFile($file, $destination) $shell = new-object -com shell.application $zip = $shell.NameSpace($file) foreach($item in $zip.items()) $shell.

  • What are "Name$1.class" files and how do I generate them in Eclipse

    I have the source code of a rather large java application and I want to set up an Eclipse project for it. After diffing the WEB-INF directory generated by Eclipse with the one generated by the original maven build script I noticed that there are seve