You need to sign in to do that
Don't have an account?

Google Maps Mashup
I was looking for an easy way to map all of our Accounts (of a certain type) on a map. Possibly color code by Account Owner. I'd like to see this on a dashboard if possible. Has any one done this or knows how to? I saw a few app exchange apps but none that do this (I think)
CR-
I'm having the same issue, Zip+4 doesn't seem to work all that well, it will map the main "account" with a pin, but when I adjust the zoom, it erases the pin, and doesn't show any surrounding accounts.
I've tried modifying a formula for the Zip Var to get it just recognize the first 5 characters, but that doesn't seem to work either. Any ideas?
var zip= "{! LEFT( "!Account.BillingPostalCode" , 5) }";
I've built a Google maps real estate app where the map shows all locations within a given radius in miles. Each property (location) is geocoded when first created (which is not difficult). Then there is a heuristic to translate latitude and longitude to miles as, of course, longitude is dependent on latitude. So it is not 100% accurate but is probably close enough for most purposes. It also shows the exact distance from the center point for each marker which is a function available in the Maps API.
Mike
I would add custom fields for latitude and longitude to the object that I want to represent on the map. These values can then be obtained by passing the object's street address to the Google or Yahoo geocoding service.
Then for latitude the conversion is 69 miles per degree of lat. For longitude degrees are smaller as you go north -- I use 55 miles per degree as a heuristic which is fairly close for 35 deg. latitude (Albuquerqe). At 40 deg latitude (Kansas/Nebraska border) the figure is 53 miles per degree and for 45 deg latitude (Montana/Wyoming border) the figure is 49 miles per degree. So if you want to find all objects within 10 miles of a given lat and lng you can construct a dynamic soql query using the following logic:
lat__c < given lat + 10 / 69
and lat__c > given lat - 10 / 69
and lng__c < given lng + 10 / 55
and lng__c > given lng - 10 / 55
Let me know if this answers your question.
Mike
TeamCraven,
I tried the formula field also to no avail. I did play with Google. I actually think Goolge works great with the Zip + 4. I think the Flex control object struggles with Zip + 4.
The Flex control object keys off the SF standard Address field. I am not sure how to build one to pull off of standard text fields (i.e. creating a formula field.)