svn commit: r1067942 - /ofbiz/trunk/framework/common/webcommon/includes/geolocation.ftl

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

svn commit: r1067942 - /ofbiz/trunk/framework/common/webcommon/includes/geolocation.ftl

jleroux@apache.org
Author: jleroux
Date: Mon Feb  7 13:17:03 2011
New Revision: 1067942

URL: http://svn.apache.org/viewvc?rev=1067942&view=rev
Log:
Found that the default zoom level was at max zoom in, changed to 15 (0=World, 19=max zoom in)

Found also that the address example has a very small height map, but did not have enough time to fix it

Modified:
    ofbiz/trunk/framework/common/webcommon/includes/geolocation.ftl

Modified: ofbiz/trunk/framework/common/webcommon/includes/geolocation.ftl
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/common/webcommon/includes/geolocation.ftl?rev=1067942&r1=1067941&r2=1067942&view=diff
==============================================================================
--- ofbiz/trunk/framework/common/webcommon/includes/geolocation.ftl (original)
+++ ofbiz/trunk/framework/common/webcommon/includes/geolocation.ftl Mon Feb  7 13:17:03 2011
@@ -30,6 +30,7 @@ under the License.
             var map = new GMap2(document.getElementById("<#if geoChart.id?has_content>${geoChart.id}<#else>map_canvas</#if>"));
             <#if geoChart.center?has_content>
               map.setCenter(new GLatLng(${geoChart.center.lat?c}, ${geoChart.center.lon?c}), ${geoChart.center.zoom});
+              map.setZoom(15); // 0=World, 19=max zoom in
             <#else>
               <#if geoChart.points?has_content>
                 var latlng = [
@@ -42,9 +43,10 @@ under the License.
                   latlngbounds.extend(latlng[i]);
                 }
                 map.setCenter(latlngbounds.getCenter(), map.getBoundsZoomLevel(latlngbounds) - 1);//reduce bounds zoom level to see all markers
+                map.setZoom(15); // 0=World, 19=max zoom in
               <#else>
-                //map.setCenter(new GLatLng(37.4419, -122.1419), 12);
                 map.setCenter(new GLatLng(0, 0), 1);
+                map.setZoom(15); // 0=World, 19=max zoom in
               </#if>
             </#if>
             <#if geoChart.controlUI?has_content && geoChart.controlUI == "small">
@@ -85,6 +87,7 @@ under the License.
               map.setUIToDefault();
               map.setCenter(point, 13);
               map.addOverlay(new GMarker(point));
+              map.setZoom(15); // 0=World, 19=max zoom in
             });
           }
         --></script>
@@ -111,6 +114,7 @@ under the License.
             </#list>
           </#if>
           map.setCenter(center, zoom);
+          map.setZoom(15); // 0=World, 19=max zoom in
         </script>
       </#if>
     </#if>