Ignore:
Timestamp:
Jun 26, 2010, 9:13:30 PM (14 years ago)
Author:
rvelices
Message:

rv_gmaps - start using google.maps JS namespace

Location:
extensions/rv_gmaps/trunk/template/markers
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • extensions/rv_gmaps/trunk/template/markers/small_bullet_orange.tpl

    r3447 r6609  
    1 var icon = new GIcon();
     1var icon = new google.maps.Icon();
    22icon.image = "{$PLUGIN_ROOT_URL}/template/markers/small_bullet_orange.png";
    3 icon.iconSize = new GSize(11, 11);
    4 icon.iconAnchor = new GPoint(5, 5);
    5 icon.infoWindowAnchor = new GPoint(5, 0);
     3icon.iconSize = new google.maps.Size(11, 11);
     4icon.iconAnchor = new google.maps.Point(5, 5);
     5icon.infoWindowAnchor = new google.maps.Point(5, 0);
    66return icon;
  • extensions/rv_gmaps/trunk/template/markers/small_bullet_red.tpl

    r3447 r6609  
    1 var icon = new GIcon();
     1var icon = new google.maps.Icon();
    22icon.image = "{$PLUGIN_ROOT_URL}/template/markers/small_bullet_red.png";
    3 icon.iconSize = new GSize(11, 11);
    4 icon.iconAnchor = new GPoint(5, 5);
    5 icon.infoWindowAnchor = new GPoint(5, 0);
     3icon.iconSize = new google.maps.Size(11, 11);
     4icon.iconAnchor = new google.maps.Point(5, 5);
     5icon.infoWindowAnchor = new google.maps.Point(5, 0);
    66return icon;
  • extensions/rv_gmaps/trunk/template/markers/small_bullet_yellow.tpl

    r3447 r6609  
    1 var icon = new GIcon();
     1var icon = new google.maps.Icon();
    22icon.image = "{$PLUGIN_ROOT_URL}/template/markers/small_bullet_yellow.png";
    3 icon.iconSize = new GSize(11, 11);
    4 icon.iconAnchor = new GPoint(5, 5);
    5 icon.infoWindowAnchor = new GPoint(5, 0);
     3icon.iconSize = new google.maps.Size(11, 11);
     4icon.iconAnchor = new google.maps.Point(5, 5);
     5icon.infoWindowAnchor = new google.maps.Point(5, 0);
    66return icon;
  • extensions/rv_gmaps/trunk/template/markers/small_dot_blue.tpl

    r3447 r6609  
    1 var icon = new GIcon();
     1var icon = new google.maps.Icon();
    22icon.image = "http://labs.google.com/ridefinder/images/mm_20_blue.png";
    33icon.shadow = "http://labs.google.com/ridefinder/images/mm_20_shadow.png";
    4 icon.iconSize = new GSize(12, 20);
    5 icon.shadowSize = new GSize(22, 20);
    6 icon.iconAnchor = new GPoint(6, 20);
    7 icon.infoWindowAnchor = new GPoint(5, 1);
     4icon.iconSize = new google.maps.Size(12, 20);
     5icon.shadowSize = new google.maps.Size(22, 20);
     6icon.iconAnchor = new google.maps.Point(6, 20);
     7icon.infoWindowAnchor = new google.maps.Point(5, 1);
    88return icon;
  • extensions/rv_gmaps/trunk/template/markers/small_dot_green.tpl

    r3447 r6609  
    1 var icon = new GIcon();
     1var icon = new google.maps.Icon();
    22icon.image = "http://labs.google.com/ridefinder/images/mm_20_green.png";
    33icon.shadow = "http://labs.google.com/ridefinder/images/mm_20_shadow.png";
    4 icon.iconSize = new GSize(12, 20);
    5 icon.shadowSize = new GSize(22, 20);
    6 icon.iconAnchor = new GPoint(6, 20);
    7 icon.infoWindowAnchor = new GPoint(5, 1);
     4icon.iconSize = new google.maps.Size(12, 20);
     5icon.shadowSize = new google.maps.Size(22, 20);
     6icon.iconAnchor = new google.maps.Point(6, 20);
     7icon.infoWindowAnchor = new google.maps.Point(5, 1);
    88return icon;
  • extensions/rv_gmaps/trunk/template/markers/small_dot_purple.tpl

    r3447 r6609  
    1 var icon = new GIcon();
     1var icon = new google.maps.Icon();
    22icon.image = "http://labs.google.com/ridefinder/images/mm_20_purple.png";
    33icon.shadow = "http://labs.google.com/ridefinder/images/mm_20_shadow.png";
    4 icon.iconSize = new GSize(12, 20);
    5 icon.shadowSize = new GSize(22, 20);
    6 icon.iconAnchor = new GPoint(6, 20);
    7 icon.infoWindowAnchor = new GPoint(5, 1);
     4icon.iconSize = new google.maps.Size(12, 20);
     5icon.shadowSize = new google.maps.Size(22, 20);
     6icon.iconAnchor = new google.maps.Point(6, 20);
     7icon.infoWindowAnchor = new google.maps.Point(5, 1);
    88return icon;
  • extensions/rv_gmaps/trunk/template/markers/small_dot_red.tpl

    r3447 r6609  
    1 var icon = new GIcon();
     1var icon = new google.maps.Icon();
    22icon.image = "http://labs.google.com/ridefinder/images/mm_20_red.png";
    33icon.shadow = "http://labs.google.com/ridefinder/images/mm_20_shadow.png";
    4 icon.iconSize = new GSize(12, 20);
    5 icon.shadowSize = new GSize(22, 20);
    6 icon.iconAnchor = new GPoint(6, 20);
    7 icon.infoWindowAnchor = new GPoint(5, 1);
     4icon.iconSize = new google.maps.Size(12, 20);
     5icon.shadowSize = new google.maps.Size(22, 20);
     6icon.iconAnchor = new google.maps.Point(6, 20);
     7icon.infoWindowAnchor = new google.maps.Point(5, 1);
    88return icon;
Note: See TracChangeset for help on using the changeset viewer.