search for: openbubble

Displaying 7 results from an estimated 7 matches for "openbubble".

2010 Aug 30
4
Implementation of openBubble for openlayers
Hello, I''m back with another problem, the method Marker.openBubble isn''t implemented yet. I tried to hack a solution but I encountered some problems. When the popup is created in the toProprietary method from Marker in mxn.openlayers.core.js, I keep a reference on it with a this.infoPopup = popup. Later in the openBubble method, I do :...
2008 Jun 03
3
OpenSpace support for mapstraction
...a new browser window and paste in the link and it should be ok. The following features are not supported: declutterMarkers() showRoute() addImageOverlay() addOverlay() addTileLayer() toggleTileLayer() Polyline.show() and hide() Marker.setInfoDiv(), setDraggable(), setHoverIcon(), setShadowIcon(), openBubble() Map type control (if requested in addControls() this provides ability to switch on/off layers and markers) setMapType() and getMapType() Everything else should work. Regards Colin Law -------------- next part -------------- A non-text attachment was scrubbed... Name: mapstraction_js_patch.zip...
2008 May 27
6
IE7 Problems
...n 164 by ajturner, but was re-introduced with the changes in revision 175 with the namespaced changes by Derek Fowler. Changing the variable references back to "myself" in the resizeTo function fixed the Not Implemented error, but I''m getting other runtime errors as well. Marker.OpenBubble also throws the error "this.maps is null or not an object" on this line: // bloody microsoft -- this is broken var el = $m(this.pinID + "_" + this.maps[this.api].GUID).onmouseover; And if I click in the map and drag it, when I let go, I get "view.LatLong i...
2009 May 24
9
Mapstraction Sandbox & V2 push
Greetings from the day of rest after a week of Where. It was a great time out here - and there is a lot of interest in the community around Mapstraction. The new Sandbox (http://mapstraction.appspot.com) made surprisingly quick rounds and lots of kudos. It will be a great place to demo Mapstraction and encourage developers. We had a very good discussion about Mapstraction at WhereCamp. Pamela
2012 Mar 30
1
Popups not appearing for leaflet using mxn 2.0.18
Good day, I''m trying out the new Leaflet provider using the 2.0.18 release. Unfortunately, I haven''t been able to get a marker bubble (popup) to appear after clicking on the marker. I think my use of Mapstraction is correct as I see a popup appear for the googlev3, ovi, and openlayers providers when I switch with no other changes to my code. Is there a step I''m
2009 Dec 13
0
r65 committed - Use the GeoCommons addOverlay method
...rietary: function() { // TODO: Add provider code + return {}; }, fromProprietary: function(googlePoint) { @@ -239,6 +289,7 @@ toProprietary: function() { // TODO: Add provider code + return {}; }, openBubble: function() { @@ -262,6 +313,7 @@ Polyline: { toProprietary: function() { + return {}; // TODO: Add provider code }, ======================================= --- /trunk/tests/index.htm Sun Dec 13 11:10:00 2009 +++ /trunk/tests/index.htm Sun Dec 13...
2009 Jun 01
0
[mapstraction commit] r12 - Implemented most Cloudmade functions. Still requires image, tile and KML/GeoRSS overlays
...options.icon = cicon; + } + if (this.labelText) { + options.title = this.labelText; + } + var cmarker = new CM.Marker(pt, options); + + if (this.infoBubble) { + cmarker.bindInfoWindow(this.infoBubble); + } + + + return cmarker; }, openBubble: function() { - // TODO: Add provider code + var pin = this.proprietary_marker; + pin.openInfoWindow(this.infoBubble); }, hide: function() { - // TODO: Add provider code + var pin = this.proprietary_marker; + p...