Franz Buchinger
2009-Mar-23 10:55 UTC
[Mapstraction] Bird''s Eye integration in Mapstraction
Are there any plans to integrate Virtual Earth''s Bird''s Eye view to mapstraction? I tried an "integration hack" but then found out that there are too many issues involved (check whether birds eye is available for the current map area, disabling zoom controls,...). Has anyone else tried it? Franz
info at frest.de
2009-Aug-20 11:36 UTC
[Mapstraction] Bird''s Eye integration in Mapstraction
An integration would be great! I tried it, too, but i got this error: Message: ''this.vemapcontrol'' is Null or no Object Line: 143 Char: 616139 Code: 0 URI: http://dev.virtualearth.net/mapcontrol/mapcontrol.ashx?v=6 It seems to be not that easy... Could anyone help? frest
Hmmm - birdseye should just work. I know it does in Multimap. 2009/8/20 info at frest.de <info at frest.de>> An integration would be great! I tried it, too, but i got this error: > > Message: ''this.vemapcontrol'' is Null or no Object > Line: 143 > Char: 616139 > Code: 0 > URI: http://dev.virtualearth.net/mapcontrol/mapcontrol.ashx?v=6 > > It seems to be not that easy... > Could anyone help? > > frest > > _______________________________________________ > Mapstraction mailing list > Mapstraction at lists.mapstraction.com > http://lists.mapstraction.com/listinfo.cgi/mapstraction-mapstraction.com >-- Derek Fowler m. +44 (0) 7966 512 369 e. dezfowler at gmail.com -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.mapstraction.com/pipermail/mapstraction-mapstraction.com/attachments/20090820/7851488c/attachment.htm>
info at frest.de
2009-Aug-20 12:02 UTC
[Mapstraction] Bird''s Eye integration in Mapstraction
It does, but I want to show the bird''s eye view only, not just a button to show it. This woul be the code (example): function GetMap() { map = new VEMap(''myMap''); map.LoadMap(SpaceNeedle, 17); // Let me know if a birdseye scene is available map.AttachEvent("onobliqueenter", OnObliqueEnterHandler); } function OnObliqueEnterHandler() { if(map.IsBirdseyeAvailable()) { var TopOfNeedle = new VELatLong(47.622, -122.3491); map.SetBirdseyeScene(TopOfNeedle); } } frest
John McKerrell
2009-Aug-20 13:29 UTC
[Mapstraction] Bird''s Eye integration in Mapstraction
Bird''s eye is fiddly because it relies on asynchronous requests, I''d probably recommend you use (my) integration which you''ll find in the Multimap API. It should always return you reliable information from function calls and further information about the async requests in event handlers. John