ImageEn for Delphi and C++ Builder ImageEn for Delphi and C++ Builder

 

ImageEn Forum
Profile    Join    Active Topics    Forum FAQ    Search this forumSearch
 All Forums
 ImageEn Library for Delphi, C++ and .Net
 ImageEn and IEvolution Support Forum
 Slippy Map Provider...

Note: You must be registered in order to post a reply.
To register, click here. Registration is FREE!

View 
UserName:
Password:
Format  Bold Italicized Underline  Align Left Centered Align Right  Horizontal Rule  Insert Hyperlink   Browse for an image to attach to your post Browse for a zip to attach to your post Insert Code  Insert Quote Insert List
   
Message 

 

Emoji
Smile [:)] Big Smile [:D] Cool [8D] Blush [:I]
Tongue [:P] Evil [):] Wink [;)] Black Eye [B)]
Frown [:(] Shocked [:0] Angry [:(!] Sleepy [|)]
Kisses [:X] Approve [^] Disapprove [V] Question [?]

 
Check here to subscribe to this topic.
   

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.