Customer CRM Address in Google Maps?

Is it possble to plot a map of customers on a Google Map using the CRM address information? Similar to how it's done with a WebApp?

Hi Scott,
That's not possible since there's no module that will retrieve CRM data from the frontend.
Cheers,
-mario

Similar Messages

  • Open an e-mailed street address in google maps

    Greetings humans,
    Does any one know of a way to directly open an e-mailed address in google maps (or any map site for that matter)
    Kinda like the way it works in Address Book, except within Mail. Such as, highlight an address that someone emailed to me and right click then select open in google maps. A script perhaps?
    I know I can highlight the address then go Mail>services>search with Google, then once on Googles result page select maps. But I was hoping for a more direct way.
    Thanks in advance,
    bd

    Thanks for replying David.
    What I was hoping for is a plugin for Mail to add a "Search with Google Maps" right under "Search with Google" (which is already there under Mail>Services.
    "How is Mail (or any part of the system for that matter) supposed to know that an arbitrary text you’ve selected in Mail is actually a postal address?"
    well... the user would know that it is a postal address. That would be the reason for selecting it and asking it to be searched via google maps. And if it wasn't an address, then there would be no results. Much the same way as if you typed a non-postal address directly in the google maps page. (Actually if you type any random word in google maps you will get thousands of hits)
    I hope that clarifies what I mean. Or did I confuse the issue more?
    Thanks again,
    bd
    eMac 1.25GHz SD, 768 MB   Mac OS X (10.4.7)   200GB LaCie; Nikon D70s; iPod Mini; Treo600

  • When I assign an address from google map to my contact, my contact pictures changes to a map. How do I prevent that from happening??? thanks

    When I assign an address from google map to my contact, my contact pictures changes to a map. How do I prevent that from happening??? thanks

    It isn't. Forward it to [email protected] and then delete it.
    (109195)

  • How to find direction for address using google map

    Hi all,
    Please help me solve this .
    i want to see the (way)direction from office to account address in google map below each each contact details.
    i created a Account Web Applet, it is showing account address correctly
    http://maps.google.com/?q=%%%Bill_To_ADDR_Address1%%%,+%%%Bill_To_CITY_City%%%,+%%%Bill_To_COUNTRY_Country%%%
    But i want to see the direction from office, ..
    Thanks in Advance.
    [email protected]
    Uthaya.

    Hello,
    This is what you have to use as an example
    http://maps.google.com/maps?f=d&source=s_d&saddr=Collins+Street,+Melbourne,+Victoria,+Australia&daddr=Elizabeth+Street,+Melbourne,+Victoria,+Australia
    h5. This is the from address
    Collins+Street,+Melbourne,+Victoria,+Australia
    h5. This is the end location
    Elizabeth+Street,+Melbourne,+Victoria,+Australia
    What you will need to do is relace these values with %%%Bill_To_Addr_Address1%%% and so on

  • Find direction for address using google map using web Applet.

    Hi all,
    Please help me solve this .
    i want to see the (way)direction from office to account address in google map below each each contact details.
    i created a Account Web Applet, it is showing account address correctly
    http://maps.google.com/?q=%%%Bill_To_ADDR_Address1%%%,+%%%Bill_To_CITY_City%%%,+%%%Bill_To_COUNTRY_Country%%%
    But i want to see the direction from office, ..
    Thanks in Advance.
    [email protected]
    Uthaya.

    Hello,
    This is what you have to use as an example
    http://maps.google.com/maps?f=d&source=s_d&saddr=Collins+Street,+Melbourne,+Victoria,+Australia&daddr=Elizabeth+Street,+Melbourne,+Victoria,+Australia
    h5. This is the from address
    Collins+Street,+Melbourne,+Victoria,+Australia
    h5. This is the end location
    Elizabeth+Street,+Melbourne,+Victoria,+Australia
    What you will need to do is relace these values with %%%Bill_To_Addr_Address1%%% and so on

  • Bookmarking addresses in google maps

    how do i save my own address, or any other addresses into the bookmark of google maps?
    and also, some businesses are not showing when searching in google map. can you add your own point of interest?
    thanks

    gecko411 wrote:
    how do i save my own address, or any other addresses into the bookmark of google maps?
    and also, some businesses are not showing when searching in google map. can you add your own point of interest?
    thanks
    The easiest way for me was:
    Saving the addresses in the "Contacts".. that way they're always there.
    Then, when I'm in Google maps and I start typing the name, it just comes up (with the address) for me to select. It saves me a lot of time!!
    You can type either the name or the address and it will come up.
    Yes, you can add your own point of interest.

  • 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?

  • Address mapping function?  (automatically show google map, like with Mail?)

    I have a Numbers spreadsheet full of building addresses in my area. I'd like to be able to automatically visually map an address on google maps, such as is available in the Mail application (like when you hover over an address and it recognizes text that makes up an address and allows the feature to map it with a single click). Is this possible at all?

    Hi Pars,
    you were in a wrong application.
    here is the right one
    Application 71508 - Google Map 2
    Thanks

  • Google Maps API Key V3???

    We are in the middle of integrating a real estate website for our client and found that the Google Maps API keys have changed.
    Have followed the instructions found on: https://developers.google.com/maps/documentation/javascript/tutorial#api_key But we still receive an error stating our application is not authorised to use the API.
    Does this mean Google Maps is not authorinsg Business Catalyst anymore? (Perhaps since the integration of BC into the Adobe ecosystem??)
    Is anyone else having this issue or can anyone please urgently advise?

    You have to get your own API key: https://code.google.com/apis/console/
    My map uses a custom solution (Web Apps & Google Maps API V3) and is still working fine.

  • IWeb page generates IE9 error for Google Maps API key

    My iWeb site generates an error in IE9 "This web site needs a different Google Maps API key". Is there any fix in iWeb for this?
    I've found this link that offers a solution for IE9 users. It seems to be a bug with IE9 mixed content security settings, but people will blame my website and not their browser
    http://answers.microsoft.com/en-us/ie/forum/ie9-windows_7/ie-9-is-telling-me-my- website-needs-a-different/59bfa1ed-f757-e011-8dfc-68b599b31bf5
    Excerpt from that site "Okay, I resolved the issue. I went into my Security settings. Under Miscellaneous I changed Display mixed content to "Enable". I believe there is a bug in the Display mixed content feature. I should be able to keep the setting at "Prompt", then see the content when I click the appropriate option when prompted. I believe the Google Maps API message was shown in error."

    You have to get your own API key: https://code.google.com/apis/console/
    My map uses a custom solution (Web Apps & Google Maps API V3) and is still working fine.

  • I heard the iOS 6 will not be available on the iPad 1 , will I be able to keep Google maps?

    I heard ios 6 will not be available on iPad 1 ,will I be able to keep Google maps ?

    Short answer: Yes.
    Long answer: The Maps application on iOS5 is, as I understand it, a custom front end for Google Maps that was created by Apple. It should continue to function indefinitely, so long as something does not change on the Google side that would prevent it from accessing their servers. Although I qualified the answer, it doesn't seem likely that Google would do such a thing.

  • Google Map Bookmarks

    I can't seem to set bookmarks on the map application. Can anyone help me out here?
    Thanks,
    Joel

    Type in the address you want into the google maps browser. Hit search. When you see the push pin on the map, touch the blue right arrow button. This will bring up a screen where one option is "add to bookmarks".
    You can also bring up an address in google maps by going into your contacts and tapping on the address. Then you can sett the bookmark by the same procedure.

  • Google Maps need help

    I was at a cafe today and wanted to find my way to a new location in the same town.
    I looked up the address in Google maps to the cafe where I was and was going to do a 'from here' 'to there' route.
    My question is with my current location (cafe) in the 'from here', how do I search for the new location whilst keeping the current location in the from here box?
    Do I have to first bookmark the 'from here' location, then find the 'to there' loction, then go back load the bookmark and do a route? Seems a long way around.
    Any 'smart' iphone Google maps users be able to help?
    thanks

    I'll try and explain what I am trying to do.
    I went to a cafe and from there I wanted to go to a shop in the same town.
    I searched GM's for the cafe, so I could put it in my 'from here' field.
    Now I wanted to search for the shop, I knew it's name so I searched and found it, I chose this as my 'to here' field but now my from 'here field' is empty (the cafe I am at).
    The only way I could do it was bookmark the cafe I was in, search for the shop and click 'to here', then in the 'from here' click and choose the cafe bookmark.
    Is there another way to do this?
    thanks

  • Apple Maps - Please reconsider and include Google Maps. As a long time Apple customer, I am disappointed iOS would regress the system and inconvenience millions because of a vendetta that should never hinder users. Not only does the transit feature I used

    Apple Maps - Please reconsider and include Google Maps. As a long time Apple customer, I am disappointed iOS would regress the system and inconvenience millions because of a vendetta that should never hinder users. Not only does the transit feature I used religiously no longer exist, but clicking on an address in a website now directs users to a poor Google Maps interface. I am surprised to see such a effortless update from a company squatting on the resources to make a change its customers are asking for.

    varjak paw wrote:
    Apple has documented an API to provide add-ons to the Maps app in the iOS 6 SDK, so that such add-ons are possible is absolutely not a guess that the capability is there. As to whether someone will indeed develop an add-on for any given transit system, that would be a guess, yes, but at a couple of companies at least have already announced plans to do so.
    In select cities and areas - so now I'm going from being able to supply this information myself to either wait for someone to supply an app or write an app myself... This is not feature progression but feature regression. Adding transit times or a specific overlay should not have to be something you need to do through code via an API. So no dice... Your guess that we will see better transit information is just that - a guess, nothing else.
    If you don't agree with that editorial, you are certainly free to do so. I provided the link as food for thought for those who have been questioning Apples' decision to drop Google's maps from iOS. Whether or not you agree with Brad's analysis or that of anyone else is up to you.
    But on that central issue the editorial fails - it's is not the true tale of why Apple made their move and therefore useless even as "food for thought" (because it's guesswork).

  • Numbers/Address Book and Google Maps

    I would love to integrate my spreadsheet of addresses or my Address Book with Google Maps.
    Is this possible? Somehow?
    I take a lot of trips across the country and don't always know when I will be driving by my friends. But if I had a map I could glance at to see where they all are, I would know that I could schedule a lunch with a friend halfway or something like that.
    I have heard about MapPoint, but don't know if there is anything like this that is free/affordable/non-MS.
    Thanks!

    Integrating in Numbers would not be automatic. You'd have to format links to assign to each address.
    I've seen plug-ins to use Google maps with Address Book. Try a search on MacUpdate or VersionTracker for Address Book.
    I think one of the features for Address Book in Leopard is integration with Google maps.

Maybe you are looking for