GeoView : mapstraction to version 215.

svn: r12994
This commit is contained in:
Serge Noiraud 2009-08-13 21:58:46 +00:00
parent c1be765f7a
commit 4fcdbe2c6d

View File

@ -2194,12 +2194,13 @@ Mapstraction.prototype.getCenter = function() {
/** /**
* setCenter sets the central point of the map * setCenter sets the central point of the map
* @param {LatLonPoint} point The point at which to center the map * @param {LatLonPoint} point The point at which to center the map
* @options {hash} optional parameters, such as {pan:true}
*/ */
Mapstraction.prototype.setCenter = function(point) { Mapstraction.prototype.setCenter = function(point, options) {
if(this.loaded[this.api] === false) { if(this.loaded[this.api] === false) {
var me = this; var me = this;
this.onload[this.api].push( function() { this.onload[this.api].push( function() {
me.setCenter(point); me.setCenter(point, options);
} ); } );
return; return;
} }
@ -2215,13 +2216,15 @@ Mapstraction.prototype.setCenter = function(point) {
break; break;
case 'google': case 'google':
case 'openstreetmap': case 'openstreetmap':
map.setCenter(point.toGoogle()); if(options != null && options['pan']) { map.panTo(point.toGoogle()); }
else { map.setCenter(point.toGoogle()); }
break; break;
case 'openlayers': case 'openlayers':
map.setCenter(point.toOpenLayers()); map.setCenter(point.toOpenLayers());
break; break;
case 'microsoft': case 'microsoft':
map.SetCenter(point.toMicrosoft()); if(options != null && options['pan']) { map.PanToLatLong(point.toMicrosoft()); }
else { map.SetCenter(point.toMicrosoft()); }
break; break;
case 'multimap': case 'multimap':
map.goToPosition(point.toMultiMap()); map.goToPosition(point.toMultiMap());
@ -2463,7 +2466,7 @@ Mapstraction.prototype.visibleCenterAndZoom = function()
/** /**
* Automatically sets center and zoom level to show all polylines * Automatically sets center and zoom level to show all polylines
* Takes into account radious of polyline * Takes into account radius of polyline
* @param {Int} radius * @param {Int} radius
*/ */
Mapstraction.prototype.polylineCenterAndZoom = function(radius) Mapstraction.prototype.polylineCenterAndZoom = function(radius)
@ -2478,6 +2481,8 @@ Mapstraction.prototype.polylineCenterAndZoom = function(radius)
return; return;
} }
radius = (radius == null) ? 0 : radius;
var lat_max = -90; var lat_max = -90;
var lat_min = 90; var lat_min = 90;
var lon_max = -180; var lon_max = -180;
@ -4546,6 +4551,48 @@ Marker.prototype.openBubble = function() {
} }
}; };
/**
* closeBubble closes the infoBubble
*/
Marker.prototype.closeBubble = function() {
if(this.mapstraction.loaded[this.api] === false) {
var my_marker = this;
this.mapstraction.onload[this.api].push( function() {
my_marker.closeBubble();
} );
return;
}
if( this.api) {
switch (this.api) {
case 'yahoo':
var ypin = this.proprietary_marker;
ypin.closeSmartWindow();
break;
case 'google':
case 'openstreetmap':
var gpin = this.proprietary_marker;
gpin.closeInfoWindow();
break;
case 'microsoft':
// The following works with v6.2, but need to first update way Mapstraction adds MS markers
var pin = this.proprietary_marker;
this.map.HideInfoBox();
break;
case 'multimap':
//closeInfoBox?
break;
case 'mapquest':
// ???
break;
}
} else {
if(this.debug) {
}
}
};
/** /**
* hide the marker * hide the marker
*/ */
@ -4866,7 +4913,7 @@ Polyline.prototype.toMap24 = function() {
var m24poly; var m24poly;
var m24longs = ""; var m24longs = "";
var m24lats = ""; var m24lats = "";
for (var i=0; i<this.points.length; i++) { for (var i=0, length = this.points.length; i<length; i++) {
if(i) { if(i) {
m24longs += "|"; m24longs += "|";
m24lats += "|"; m24lats += "|";
@ -4874,7 +4921,7 @@ Polyline.prototype.toMap24 = function() {
m24longs += (this.points[i].lon*60); m24longs += (this.points[i].lon*60);
m24lats += (this.points[i].lat*60); m24lats += (this.points[i].lat*60);
} }
if (this.closed || this.gpoints[0].equals(this.gpoints[length-1])) { if (this.closed || this.points[0].equals(this.points[length-1])) {
m24poly = new Map24.Polygon({ m24poly = new Map24.Polygon({
Longitudes: m24longs, Longitudes: m24longs,
Latitudes: m24lats, Latitudes: m24lats,
@ -4934,7 +4981,7 @@ Polyline.prototype.toMultiMap = function() {
* @returns a LineOverlay/PolygonOverlay * @returns a LineOverlay/PolygonOverlay
*/ */
Polyline.prototype.toMapQuest = function() { Polyline.prototype.toMapQuest = function() {
if (this.closed || this.points[0].equals(this.points[length-1])) { if (this.closed || this.points[0].equals(this.points[this.points.length-1])) {
var mqpoly = new MQA.PolygonOverlay(); var mqpoly = new MQA.PolygonOverlay();
mqpoly.setFillColor(this.color || "#E90000"); mqpoly.setFillColor(this.color || "#E90000");
mqpoly.setFillColorAlpha(this.opacity || 0.3); mqpoly.setFillColorAlpha(this.opacity || 0.3);
@ -5091,8 +5138,8 @@ Polyline.prototype.simplify = function(tolerance) {
reduced[0] = this.points[0]; reduced[0] = this.points[0];
var markerPoint = 0; var markerPoint = 0;
var length = this.points.length;
for (var i = 1; i < this.points.length-1; i++) for (var i = 1; i < length-1; i++)
if (this.points[i].distance(this.points[markerPoint]) >= tolerance) if (this.points[i].distance(this.points[markerPoint]) >= tolerance)
{ {
reduced[reduced.length] = this.points[i]; reduced[reduced.length] = this.points[i];
@ -5211,7 +5258,7 @@ Mapstraction.prototype.enableScrollWheelZoom = function() {
* Currently only implemented in Google * Currently only implemented in Google
* @param {object} polygon * @param {object} polygon
*/ */
Mapstraction.prototype.addPolygon = function(polygon) { Mapstraction.prototype.addPolygon = function(polygon) {
if(this.loaded[this.api] == false) if(this.loaded[this.api] == false)
{ {
myself = this; myself = this;
@ -5244,7 +5291,7 @@ Mapstraction.prototype.addPolygon = function(polygon) {
} }
break; break;
} }
}; };
/////////////// ///////////////
// Radius // // Radius //