function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
ChanChan 

Separate Tab for Google Map ???

Hi...
 
I have a object that contains an address field. Depending on the address contained in a specific object, I show the address on a Google Map. I have embedded this map in the object's page layout.
 
Now, I have a requirement in which I want to display the addresses of all the objects in a single map and display this map in a separate tab. This tab should not contain any object but just the map.
 
I can surely code the map's functionality but how to display it in a separate tab?
 
Thanks in advance...
 
Chander
CJagannathCJagannath

Chander,

 

You can adopt the following approach…

 

Put your code in a SControl. Override the new tab by that SControl (Salesforce.com Summer 07 new feature).

So whenever you’ll click that tab, only the map will be displayed.

 

Thanks and regards,

Jagannath

ChanChan
Thanks a lot for the solution Jagannath....