• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

How to Get the maplink

 
Ranch Hand
Posts: 32
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
In my application i used this code for getting map link,I am getting when i am click on that link ,but i am not getting that map when i am right click on that link and then click on open in new window or open in new tab

can you give suggestion for that,how can i approach


Code::

<script type="text/javascript">
function mapWindow(str){
window.open("http://www.map.google.com","_blank","menubar=yes,resizable=yes,scrollbars=yes,toolbar=yes,location=yes,");
return false;
}
</script>
<h:outputLink id="map" styleClass="commandLink"
onclick="return mapWindow('#{displaySearch.status}');">
<h:outputText id="text2" styleClass="outputText"
value="#{msg['label.findahealthcareprovidersearchresult.map']}"></h:outputText>
</h:outputLink>
 
reply
    Bookmark Topic Watch Topic
  • New Topic