How to make Google marker url open in a new browser window or tab?

bluesky

I have some markers on a Google map and would like to make it open a new tab or window when they are clicked on. I only am able to open the clicked marker url in the same browser window tab.

This is how it works now...

var latlon = new google.maps.LatLng(MAP_FOCUS_LATITUDE, MAP_FOCUS_LONGITUDE);
var myOptions = {
   center : latlon,
   zoom : 14,
   mapTypeId : google.maps.MapTypeId.ROADMAP,
   mapTypeControl : false,
   navigationControlOptions : {
   style : google.maps.NavigationControlStyle.LARGE
   }
};
var map = new google.maps.Map(document.getElementById("mapholder"), myOptions);
var marker = new google.maps.Marker(
{
    position : new google.maps.LatLng(10.0,20.0),
    title : "Blah",
    url : "http://www.myurltest.com"
});

google.maps.event.addListener(marker, 'click', function() { 
    window.location.href = this.url;
});

In HTML, normally you can do this to open a link in a new tab... so how do I get this effect ?

<a href="http://www.myurltest.com" target="_blank">Blah blah</a>

I would appreciate any assistance !

Jorge

The url property it's to define a sprite sheet for style the icon, nevertheless change the callback of click for this

window.open(this.url, '_blank');

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How to make Google marker url open in a new browser window or tab?

From Dev

How to open a URL in a new browser window with AutoHotkey?

From Dev

How to open new window browser when user click close tab?

From Java

Open a URL in a new tab (and not a new window)

From Dev

Zkoss - open url in browser's new tab

From Dev

How can I make Google Hangouts open in a new tab?

From Dev

Open page in new tab/window AND direct current window to a new url

From Dev

How to open a new tab on the left in Chrome browser?

From Dev

How can I make a link in firefox extension panel, to open in browser window / tab?

From Dev

How to open the url in new window?

From Dev

How to open the url in new window?

From Dev

How to make Matlab editor open a new script as a tab by default, instead of a new window?

From Dev

Javascript open a new browser window (not tab) with address bar disabled

From Dev

Open new tab in the same browser window after some event

From Dev

Open in new window or tab

From Dev

How to open a new Window (not tab) in angularjs

From Dev

How to open new window (tab) in AngularJS?

From Dev

How to open anchor in a modal window, not a new tab

From Dev

why is window.open(url) opening new window instead of tab

From Dev

Python Selenium: How to make browser window not open

From Dev

Open window in tab of new window

From Dev

How do I make a div link open in a new tab Javascript onClick="window.location

From Dev

How do I make a div link open in a new tab Javascript onClick="window.location

From Dev

Open URL in new browser tab when click on HTML button

From Dev

Is it possible to make all <a> tags open in a new window/tab?

From Dev

jquery - how do I open a URL in a new tab/window when the user clicks on a div with no associated href?

From Dev

HTML in new Browser Tab or WIndow

From Dev

Open link new window (not tab) with JavaScript without typing the URL twice?

From Dev

Open PDF in a new tab in browser

Related Related

  1. 1

    How to make Google marker url open in a new browser window or tab?

  2. 2

    How to open a URL in a new browser window with AutoHotkey?

  3. 3

    How to open new window browser when user click close tab?

  4. 4

    Open a URL in a new tab (and not a new window)

  5. 5

    Zkoss - open url in browser's new tab

  6. 6

    How can I make Google Hangouts open in a new tab?

  7. 7

    Open page in new tab/window AND direct current window to a new url

  8. 8

    How to open a new tab on the left in Chrome browser?

  9. 9

    How can I make a link in firefox extension panel, to open in browser window / tab?

  10. 10

    How to open the url in new window?

  11. 11

    How to open the url in new window?

  12. 12

    How to make Matlab editor open a new script as a tab by default, instead of a new window?

  13. 13

    Javascript open a new browser window (not tab) with address bar disabled

  14. 14

    Open new tab in the same browser window after some event

  15. 15

    Open in new window or tab

  16. 16

    How to open a new Window (not tab) in angularjs

  17. 17

    How to open new window (tab) in AngularJS?

  18. 18

    How to open anchor in a modal window, not a new tab

  19. 19

    why is window.open(url) opening new window instead of tab

  20. 20

    Python Selenium: How to make browser window not open

  21. 21

    Open window in tab of new window

  22. 22

    How do I make a div link open in a new tab Javascript onClick="window.location

  23. 23

    How do I make a div link open in a new tab Javascript onClick="window.location

  24. 24

    Open URL in new browser tab when click on HTML button

  25. 25

    Is it possible to make all <a> tags open in a new window/tab?

  26. 26

    jquery - how do I open a URL in a new tab/window when the user clicks on a div with no associated href?

  27. 27

    HTML in new Browser Tab or WIndow

  28. 28

    Open link new window (not tab) with JavaScript without typing the URL twice?

  29. 29

    Open PDF in a new tab in browser

HotTag

Archive