Changeset 5306 in ntrip for trunk/BNC/src/map/map_gm.html


Ignore:
Timestamp:
Jun 29, 2013, 10:00:33 PM (11 years ago)
Author:
weber
Message:

Track plot options

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/map/map_gm.html

    r5301 r5306  
    1616      var zoom;
    1717      var dotSize;
     18      var dotColor;
    1819      var traceIcon;
    1920     
    20       function initialize(lat, lon, mapWinSize) {
    21         dotSize = mapWinSize;
     21      function initialize(lat, lon, mapWinDotSize, mapWinDotColor) {
     22        dotSize = mapWinDotSize;
     23        dotColor = mapWinDotColor;
    2224        if (dotSize > 10) dotSize = 10;
    2325
     
    3941                                               );
    4042
    41         traceIcon = new google.maps.MarkerImage("qrc:///map/reddot.png",
     43        if (dotColor == 1) {
     44          traceIcon = new google.maps.MarkerImage("qrc:///map/reddot.png",
    4245                                                null,
    4346                                                null,
    4447                                                new google.maps.Point(1, 1),
    4548                                                new google.maps.Size(dotSize, dotSize)
    46                                                );
     49                                                );
     50        }
     51 
     52
     53        if (dotColor == 2) {
     54          traceIcon = new google.maps.MarkerImage("qrc:///map/yellowdot.png",
     55                                                null,
     56                                                null,
     57                                                new google.maps.Point(1, 1),
     58                                                new google.maps.Size(dotSize, dotSize)
     59                                                );
     60        }
    4761
    4862        marker = new google.maps.Marker({
Note: See TracChangeset for help on using the changeset viewer.