T O P I C R E V I E W |
bmesser |
Posted - Nov 22 2012 : 04:48:46 Hi
I just wondered if there had been any further developments to the TIESlippyMapProvider class/unit?
As far as I can make out it would allow you to display tiled maps inside an ImageEN component?
Bruce.
|
2 L A T E S T R E P L I E S (Newest First) |
bmesser |
Posted - Nov 23 2012 : 09:48:43 Fabrizio
Looks very interesting and full of possibilities. I don't have the source code version of ImageEN so I don't think I can check it out.
I am using WebGMaps from TMS at the moment which look great but not so good when you want to add markers and drag them around.
Bruce. |
fab |
Posted - Nov 23 2012 : 06:15:38 Hi, this feature is under developing (actually slowed down by the 64 bit porting). Anyway it can be previewer. Just enable {$define IEINCLUDESLIPPYMAP} in ie.inc, recompile and do:
var map: TIESlippyMap;
procedure TForm1.Button1Click(Sender: TObject); begin map := TIESlippyMap.Create(iesmpMapQuest, 'cache'); map.Zoom := 14; ImageEnView1.LegacyBitmap := false; ImageEnView1.IEBitmap.VirtualBitmapProvider := map; ImageEnView1.Update(); end;
You can change location using map.Longitude and map.Latitude.
No further support is provided now.
|