--- 20100529_Belize.php.orig 2010-06-09 23:37:20.879339708 -0700 +++ 20100529_Belize.php 2010-06-11 09:40:30.966460292 -0700 @@ -1,7 +1,7 @@ - Map created by GPS Visualizer + 2010/05/29 - Diving in and Visiting Belize @@ -22,8 +22,8 @@ b. "gv_options" and the code that calls "functions.js" on maps.gpsvisualizer.com c. The "GV_Map" function, which contains all the geographic info for the map --> -
-
+
+

This map was created using GPS Visualizer's do-it-yourself geographic utilities.

Please wait while the map data loads...

@@ -48,7 +48,7 @@
- +
@@ -67,16 +67,46 @@ gv_options.map_div = 'gmap_div'; // the name of the HTML "div" tag containing the map itself; usually 'gmap_div' // basic map parameters: - gv_options.width = 1024; // width of the map, in pixels + gv_options.width = 824; // width of the map, in pixels gv_options.height = 480; // height of the map, in pixels - gv_options.full_screen = false; // true|false: should the map fill the entire page (or frame)? gv_options.center = [27.3860834355,-101.252313489]; // [latitude,longitude] - be sure to keep the square brackets gv_options.zoom = 4; // higher number means closer view; can also be 'auto' + gv_options.map_opacity = 1; // number from 0 to 1 - gv_options.map_type = 'G_HYBRID_MAP'; // popular map_type choices are 'G_NORMAL_MAP', 'G_SATELLITE_MAP', 'G_HYBRID_MAP', 'G_PHYSICAL_MAP', 'MYTOPO_TILES' gv_options.doubleclick_zoom = true; // true|false: zoom in when mouse is double-clicked? gv_options.mousewheel_zoom = false; // true|false; or 'reverse' for down=in and up=out - gv_options.centering_options = { 'open_info_window':true, 'partial_match':true, 'center_key':'center', 'default_zoom':null } // URL-based centering (e.g., ?center=name_of_marker&zoom=14) + gv_options.centering_options = { 'open_info_window':true, 'partial_match':true, 'center_key':'center', 'default_zoom':10 } // URL-based centering (e.g., ?center=name_of_marker&zoom=14) // widgets on the map: gv_options.zoom_control = 'large'; // 'large'|'small'|'3d' @@ -88,6 +118,7 @@ gv_options.map_type_control.style = 'menu'; // 'menu'|'list'|'none'|'google' gv_options.map_type_control.filter = true; // true|false: when map loads, are irrelevant maps ignored? gv_options.map_type_control.excluded = ['G_SATELLITE_3D_MAP']; // comma-separated list of map types that will never show in the list ('included' also works) + gv_options.map_type_control.custom = [ { id:'VFRCHART',menu_name:'VFR Chart', url:['http://www.runwayfinder.com/media/charts/?x={X}&y={Y}&z={Z}'], tile_function:'function(a,b){var z=17-b;var f="http://www.runwayfinder.com/media/charts/?x="+a.x+"&y="+a.y+"&z="+z;return f;}', copyright:'Runway data from RunwayFinder.com' } ]; gv_options.legend_options = []; // options for a floating legend box (id="gv_legend"), which can contain anything gv_options.legend_options.legend = true; // true|false: enable or disable the legend altogether gv_options.legend_options.position = ['G_ANCHOR_TOP_LEFT',70,6]; // [Google anchor name, relative x, relative y] @@ -97,7 +128,7 @@ // track-related options: gv_options.tracklist_options = []; // options for a floating list of the tracks visible on the map gv_options.tracklist_options.tracklist = true; // true|false: enable or disable the search box altogether - gv_options.tracklist_options.position = ['G_ANCHOR_TOP_RIGHT',6,32]; // [Google anchor name, relative x, relative y] + gv_options.tracklist_options.position = ['G_ANCHOR_BOTTOM_RIGHT',6,32]; // [Google anchor name, relative x, relative y] gv_options.tracklist_options.max_width = 180; // maximum width of the tracklist, in pixels gv_options.tracklist_options.max_height = 390; // maximum height of the tracklist, in pixels; if the list is longer, scrollbars will appear gv_options.tracklist_options.desc = true; // true|false: should tracks' descriptions be shown in the list @@ -106,12 +137,26 @@ gv_options.tracklist_options.draggable = true; // true|false: can it be moved around the screen? gv_options.tracklist_options.collapsible = true; // true|false: can it be collapsed by double-clicking its top bar? + + // marker-related options: gv_options.default_marker = { color:'red',icon:'googlemini' }; // icon can be a URL, but be sure to also include size:[w,h] and optionally anchor:[x,y] gv_options.shadows = true; // true|false: do the standard markers have "shadows" behind them? gv_options.marker_link_target = '_blank'; // the name of the window or frame into which markers' URLs will load gv_options.info_window_width = 0; // in pixels, the width of the markers' pop-up info "bubbles" (can be overridden by 'window_width' in individual markers) - gv_options.thumbnail_width = 0; // in pixels, the width of the markers' thumbnails (can be overridden by 'thumbnail_width' in individual markers) + gv_options.thumbnail_width = 480; // in pixels, the width of the markers' thumbnails (can be overridden by 'thumbnail_width' in individual markers) gv_options.photo_size = [0,0]; // in pixels, the size of the photos in info windows (can be overridden by 'photo_width' or 'photo_size' in individual markers) gv_options.hide_labels = false; // true|false: hide labels when map first loads? gv_options.label_offset = [0,0]; // [x,y]: shift all markers' labels (positive numbers are right and down) @@ -124,7 +169,7 @@ gv_options.marker_list_options.id_floating = 'gv_marker_list'; // id of a DIV tag that holds a floating list (other associated DIVs -- _handle, _table, _container -- must be similarly named) gv_options.marker_list_options.width = 220; // floating list only: width, in pixels gv_options.marker_list_options.height = 308; // floating list only: height, in pixels - gv_options.marker_list_options.position = ['G_ANCHOR_BOTTOM_RIGHT',6,38]; // floating list only: position within map + gv_options.marker_list_options.position = ['G_ANCHOR_BOTTOM_LEFT',6,64]; // floating list only: position within map gv_options.marker_list_options.draggable = true; // true|false, floating list only: can it be moved around the screen? gv_options.marker_list_options.collapsible = true; // true|false, floating list only: can it be collapsed by double-clicking its top bar? gv_options.marker_list_options.include_tickmarks = false; // true|false: are distance/time tickmarks included in the list? @@ -174,6 +219,16 @@