Re: [Gambas-user] gb.map question

2014-01-05 Thread Willy Raets
On Sun, 2014-01-05 at 22:31 +0100, Fabien Bodard wrote: > This is a bug i have corrected later. Normally now you can us Okay, I'll install Gambas 3.5.1 in a VM to see it work :) > > 2014/1/5 Willy Raets : > > Hi all, > > > > I have a Fmain with a MapView1. > > > > Following code gives error: "Un

Re: [Gambas-user] gb.map question

2014-01-05 Thread Fabien Bodard
You can use it on the 3.5 version AS a workaround try dim hShape as object hShape = Map!Myshape hshape.addpoint... 2014/1/5 Fabien Bodard : > This is a bug i have corrected later. Normally now you can us > > 2014/1/5 Willy Raets : >> Hi all, >> >> I have a Fmain with a MapView1. >> >> Followin

Re: [Gambas-user] gb.map question

2014-01-05 Thread Fabien Bodard
This is a bug i have corrected later. Normally now you can us 2014/1/5 Willy Raets : > Hi all, > > I have a Fmain with a MapView1. > > Following code gives error: "Unknown symbol in 'AddPoint' in Class > '_MapLayer'" > > The code is from an example shown on YouTube from may 2013 and there it > see

[Gambas-user] gb.map question

2014-01-05 Thread Willy Raets
Hi all, I have a Fmain with a MapView1. Following code gives error: "Unknown symbol in 'AddPoint' in Class '_MapLayer'" The code is from an example shown on YouTube from may 2013 and there it seems to work. This is the code I used on FMain: Public Sub _new() MapView1.Map.AddTile("OpenStree

Re: [Gambas-user] gb.map beginner question

2013-05-12 Thread Fabien Bodard
so for the center : MapView1.Map.Center = mappoint(Lat, lon) For the zoom : MapView1.Map.Zoom = n(1 <= n <=18) 2013/5/12 wally > Hello, > > i'm starting to learn gb.map usage with the MapView example. > > How should, let say the Aboutbutton-Subroutine be modified, to center the > map

[Gambas-user] gb.map beginner question

2013-05-11 Thread wally
Hello, i'm starting to learn gb.map usage with the MapView example. How should, let say the Aboutbutton-Subroutine be modified, to center the map on a given longitude and latitude and a 10km radius zoom around this point ? thanks wally ---

Re: [Gambas-user] gb.map

2012-11-23 Thread Fabien Bodard
In fact it allow all the components to share the Gambas version 3.9.x 2012/11/23 Willy Raets > On Thu, 2012-11-22 at 16:00 -0300, Sebastian Kulesz wrote: > > On Thu, Nov 22, 2012 at 4:00 AM, Fabien Bodard > wrote: > > > > > Coming soon > > > Le 22 nov. 2012 01:08, "Willy Raets" a > écrit :

Re: [Gambas-user] gb.map

2012-11-23 Thread Willy Raets
On Thu, 2012-11-22 at 16:00 -0300, Sebastian Kulesz wrote: > On Thu, Nov 22, 2012 at 4:00 AM, Fabien Bodard wrote: > > > Coming soon > > Le 22 nov. 2012 01:08, "Willy Raets" a écrit : > > > > > On Thu, 2012-11-22 at 00:27 +0100, Fabien Bodard wrote: > > > > This is a new component : gb.map > > >

Re: [Gambas-user] gb.map

2012-11-22 Thread Fabien Bodard
Well this is not perfect it's an early alpha 2012/11/22 Matti > That's too bad. Now I'll have to write an App for the Garmin device - the > only > thing I'm using Windows for in the Out-of-Office-World! :-D > > > Am 22.11.2012 00:27, schrieb Fabien Bodard: > > This is a new component : gb.map

Re: [Gambas-user] gb.map

2012-11-22 Thread Matti
That's too bad. Now I'll have to write an App for the Garmin device - the only thing I'm using Windows for in the Out-of-Office-World! :-D Am 22.11.2012 00:27, schrieb Fabien Bodard: > This is a new component : gb.map > > actually it only allow to manage tiled maps > > MapViewer1.Map.AddTile("Op

Re: [Gambas-user] gb.map

2012-11-22 Thread Sebastian Kulesz
On Thu, Nov 22, 2012 at 4:00 AM, Fabien Bodard wrote: > Coming soon > Le 22 nov. 2012 01:08, "Willy Raets" a écrit : > > > On Thu, 2012-11-22 at 00:27 +0100, Fabien Bodard wrote: > > > This is a new component : gb.map > > > > > > actually it only allow to manage tiled maps > > > > > > MapViewer1

Re: [Gambas-user] gb.map

2012-11-21 Thread Fabien Bodard
Coming soon Le 22 nov. 2012 01:08, "Willy Raets" a écrit : > On Thu, 2012-11-22 at 00:27 +0100, Fabien Bodard wrote: > > This is a new component : gb.map > > > > actually it only allow to manage tiled maps > > > > MapViewer1.Map.AddTile("OpenStreet", "http://{s}. > > tile.openstreetmap.org/{z}/{x

Re: [Gambas-user] gb.map

2012-11-21 Thread Willy Raets
On Thu, 2012-11-22 at 00:27 +0100, Fabien Bodard wrote: > This is a new component : gb.map > > actually it only allow to manage tiled maps > > MapViewer1.Map.AddTile("OpenStreet", "http://{s}. > tile.openstreetmap.org/{z}/{x}/{y}.png", Null, "os") > > Wow, looking great and so easy to code. Is