Re: Wicketstuff - Openlayers: not working with wicket 1.5.5?

2012-03-31 Thread Michael Allan
>   final Layer layerOSMTilesAtHome = new OSM("Osmarender",
> OSMLayer.TilesAtHome);

The "Osmarender" renderer became unavailable recently (not sure why).
Comment out the lines that refer to it, and to "layerOSMTilesAtHome".

This has nothing to do with Wicket.

-- 
Michael Allan

Toronto, +1 416-699-9528
http://zelea.com/


datazuul said:
> Hi I tried to embed an openstreetmap in my page with the code from
> SimpleOpenStreetMapPage (wicketstuff openlayers example):
> 
> final List layers = new ArrayList();
> 
>   final Layer layerOSMTilesAtHome = new OSM("Osmarender",
> OSMLayer.TilesAtHome);
>   final Layer layerOSMMapnik = new OSM("Mapnik", OSMLayer.Mapnik);
>   final Layer layerOSMCycleMap = new OSM("CycleMap", OSMLayer.CycleMap);
> 
>   layers.add(layerOSMMapnik);
>   layers.add(layerOSMTilesAtHome);
>   layers.add(layerOSMCycleMap);
> 
>   final HashMap mapOptions = new HashMap String>();
>   final Bounds boundsExtend = new Bounds(new LonLat(-20037508.34,
> -20037508.34), new LonLat(20037508.34,
>   20037508.34));
>   mapOptions.put("maxExtent", boundsExtend.getJSconstructor());
>   mapOptions.put("projection", "new 
> OpenLayers.Projection('EPSG:900913')");
>   mapOptions.put("displayProjection", "new
> OpenLayers.Projection('EPSG:4326')");
>   mapOptions.put("units", "'meters'");
>   mapOptions.put("maxResolution", "156543");
>   mapOptions.put("numZoomLevels", "18");
> 
>   final OpenLayersMap map = new OpenLayersMap("map", true, layers,
> mapOptions);
> 
>   map.addControl(Control.LayerSwitcher);
>   map.addControl(Control.MousePosition);
>   map.addControl(Control.KeyboardDefaults);
> 
>   // map.setCenter(new LonLat(10.2, 48.9));
>   // map.setZoom(3);
> 
>   add(map);
> 
> but nothing is rendered.
> 
> Javascript error: 
> Error: OpenLayers.Layer.OSM.Osmarender is not a constructor
> Line: var osm26507926 =new OpenLayers.Layer.OSM.Osmarender('Osmarender');
> 
> Anyone using OpenLayersMap and knows how to get it working?
> 
> (I already tried this fix, mentioned by another user:
> private static final String OPEN_LAYERS_VERSION = "2.11"; in OpenLayersMap,
> didn't help)

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Wicketstuff - Openlayers: not working with wicket 1.5.5?

2012-03-30 Thread datazuul
Hi I tried to embed an openstreetmap in my page with the code from
SimpleOpenStreetMapPage (wicketstuff openlayers example):

final List layers = new ArrayList();

final Layer layerOSMTilesAtHome = new OSM("Osmarender",
OSMLayer.TilesAtHome);
final Layer layerOSMMapnik = new OSM("Mapnik", OSMLayer.Mapnik);
final Layer layerOSMCycleMap = new OSM("CycleMap", OSMLayer.CycleMap);

layers.add(layerOSMMapnik);
layers.add(layerOSMTilesAtHome);
layers.add(layerOSMCycleMap);

final HashMap mapOptions = new HashMap();
final Bounds boundsExtend = new Bounds(new LonLat(-20037508.34,
-20037508.34), new LonLat(20037508.34,
20037508.34));
mapOptions.put("maxExtent", boundsExtend.getJSconstructor());
mapOptions.put("projection", "new 
OpenLayers.Projection('EPSG:900913')");
mapOptions.put("displayProjection", "new
OpenLayers.Projection('EPSG:4326')");
mapOptions.put("units", "'meters'");
mapOptions.put("maxResolution", "156543");
mapOptions.put("numZoomLevels", "18");

final OpenLayersMap map = new OpenLayersMap("map", true, layers,
mapOptions);

map.addControl(Control.LayerSwitcher);
map.addControl(Control.MousePosition);
map.addControl(Control.KeyboardDefaults);

// map.setCenter(new LonLat(10.2, 48.9));
// map.setZoom(3);

add(map);

but nothing is rendered.

Javascript error: 
Error: OpenLayers.Layer.OSM.Osmarender is not a constructor
Line: var osm26507926 =new OpenLayers.Layer.OSM.Osmarender('Osmarender');

Anyone using OpenLayersMap and knows how to get it working?

(I already tried this fix, mentioned by another user:
private static final String OPEN_LAYERS_VERSION = "2.11"; in OpenLayersMap,
didn't help)


--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Wicketstuff-Openlayers-not-working-with-wicket-1-5-5-tp4520366p4520366.html
Sent from the Users forum mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Openlayers, openstreetmap and markers

2009-08-12 Thread nino martinez wael
Hi Reinout

Draggable markers does not seem to be a 2 minute change.. From what I
found it's this that has to be done:

...
Basically, there are 2 fundamental 'classes':

OpenLayers.Control.DragMarker
OpenLayers.Handler.Marker

This is how we add drag control to the markers.


map = new OpenLayers.Map('map');
markermanager = new OpenLayers.Layer.Markers(" marker layer ");
var DragControl=new OpenLayers.Control.DragMarker(markermanager);
map.addControl(DragControl);
DragControl.activate();
---

But it should "just" be to add a new control (doing above code).. SO
it's not for specific markers but for all markers.

Do you just want your markers to be draggable or do you also want to
capture drag events?

2009/8/11 Reinout van Schouwen :
> Hi Nino,
>
> Op maandag 10-08-2009 om 18:06 uur [tijdzone +0200], schreef nino
> martinez wael:
>
>> > 3) How is the class org.wicketstuff.openlayers.api.MarkerOptions
>> > supposed to be used? I can't find a reference to it anywhere.
>> I think it might be legacy from when I did the initial framework, I
>> could'nt find any use for it.. What are you wanting to do?
>
> I'd like my markers to be draggable.
>
> Thanks,
>
> --
> Reinout van Schouwen
>
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Openlayers, openstreetmap and markers

2009-08-11 Thread Reinout van Schouwen
Hi Nino,

Op maandag 10-08-2009 om 18:06 uur [tijdzone +0200], schreef nino
martinez wael:

> > 3) How is the class org.wicketstuff.openlayers.api.MarkerOptions
> > supposed to be used? I can't find a reference to it anywhere.
> I think it might be legacy from when I did the initial framework, I
> could'nt find any use for it.. What are you wanting to do?

I'd like my markers to be draggable.

Thanks,

-- 
Reinout van Schouwen


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Openlayers, openstreetmap and markers

2009-08-10 Thread nino martinez wael
2009/8/10 Reinout van Schouwen :
> Hi,
>
> I'm playing around with Wicketstuff Openlayers and I have a few
> questions.
>
> 1) With a Google map, I can set the Bounds of a map easily. When I try
> to do the same with an OpenStreetMap, my Bounds are ignored and I get a
> thumbnail of the world map. What could be going on here?
>
> 2) I want to show a popup onmouseover instead of onclick. From the
> examples I took the PopupMarkerInfoAttributeAppender and changed the
> "onClick" attribute to "onmouseover". However, the popup is still only
> displaying on click. What am I missing?
>
> 3) How is the class org.wicketstuff.openlayers.api.MarkerOptions
> supposed to be used? I can't find a reference to it anywhere.
I think it might be legacy from when I did the initial framework, I
could'nt find any use for it.. What are you wanting to do?
>
> regards,
>
> --
> Reinout van Schouwen
>
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Openlayers, openstreetmap and markers

2009-08-10 Thread Frank Tegtmeyer
> 1) With a Google map, I can set the Bounds of a map easily. When I try
> to do the same with an OpenStreetMap, my Bounds are ignored and I get a
> thumbnail of the world map. What could be going on here?

There is a tutorial somewhere on the OpenStreetMap Wiki. The 
boundaries have to be computed using some magic (but deterministic) 
values that are given in that example. Unfortunately I cannot find the 
reference now.

Here is a link to an example in German:
http://www.cognitiones.de/doku.php/osm_openlayers_test

It says that the magic number 20037508.34 is related to the conversion 
between tile numbers and coordinates.
Unlike in this example the attribution link should be enabled in the 
display. The OSM-Javascript files provide it already but it has to be 
enabled:
map.addControl(new OpenLayers.Control.Attribution());

Regards, Frank


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Openlayers, openstreetmap and markers

2009-08-10 Thread Reinout van Schouwen
Hi,

I'm playing around with Wicketstuff Openlayers and I have a few
questions.

1) With a Google map, I can set the Bounds of a map easily. When I try
to do the same with an OpenStreetMap, my Bounds are ignored and I get a
thumbnail of the world map. What could be going on here?

2) I want to show a popup onmouseover instead of onclick. From the
examples I took the PopupMarkerInfoAttributeAppender and changed the
"onClick" attribute to "onmouseover". However, the popup is still only
displaying on click. What am I missing?

3) How is the class org.wicketstuff.openlayers.api.MarkerOptions
supposed to be used? I can't find a reference to it anywhere.

regards,

-- 
Reinout van Schouwen


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: openstreetmap in openlayers

2009-03-18 Thread morbo

Hi Nino,

thanks for the commit access.
I have now added the support for openstreetmap maps. I also added a simple
example map. 
Maybe someone could review my solution.

regards,
richard
-- 
View this message in context: 
http://www.nabble.com/openstreetmap-in-openlayers-tp22329429p22576668.html
Sent from the Wicket - User mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: openstreetmap in openlayers

2009-03-10 Thread nino martinez wael
Next step for you would be to ask about permission on wicketstuff so you can
commit some of the changes you've done...

2009/3/10 nino martinez wael 

> Seems you are on the right track, unfortunately im pretty busy for the time
> being, new job + an daugther.. The idea for the wicket-openlayers.js are to
> be a integrator between Openlayers.js and wicket so that it provides
> facilities to call the wicket ajax back and forth etc. Thats it.. :)
>
> regards Nino
>
> 2009/3/7 morbo 
>
>
>> I have to correct myself a little bit. The setCenter method does work! I
>> had
>> a problem with the coordinates, which were not in the right format. So,
>> sorry for that.
>>
>>
>>
>>
>>
>> morbo wrote:
>> >
>> > Hi Nino,
>> >
>> > yes, I would love to contribute to this project. But I'm warning you, I
>> am
>> > not a very experienced javascript developer. :)
>> >
>> > What I have done so far, was extending the layer class for all osm
>> layers.
>> > For example I created a OSMMapnik class which contributes
>> > "http://www.openstreetmap.org/openlayers/OpenStreetMap.js"; to the
>> header
>> > and the getJSConstructer method returns this: return new
>> > Constructor("OpenLayers.Layer.OSM.Mapnik").add("'" + getName() +
>> > "'").toJS();
>> >
>> > As you see, I am using the OSM object. This solution works but I think
>> it
>> > would be nicer to use the TSM object, as I have done in my first attempt
>> > (see above). The problem is that the script does not find the
>> > osm_getTileURL method. I am not sure why.
>> >
>> > Furthermore I modified the setZoom method so, that it calls
>> > "zoomTo(zoom)". Thats all.
>> >
>> > Maybe, you could give a brief introduction how the project works. I am
>> not
>> > sure if I understand all of your code. Especially the role of the
>> > wicket-openlayers.js file and event handling.
>> >
>> > richard
>> >
>> >
>> >
>> >
>> > nino martinez wael wrote:
>> >>
>> >> Hi Richard
>> >>
>> >> Im the author behind the openlayers contrib, I checked the code last
>> time
>> >> somewhere in end if december...
>> >>
>> >> Do you have some patches or further clues on whats not working?
>> >>
>> >>
>> >> Im not directly using the openlayers integration currently so patches
>> are
>> >> very welcome, even co- coders would be nice :)
>> >> regards Nino
>> >>
>> >> 2009/3/6 morbo 
>> >>
>> >>>
>> >>> Thank you very much. That really helped a lot. I am now able to render
>> >>> the
>> >>> different openstreetmap layers (mapnik, ti...@home, cycleMap) with
>> the
>> >>> above
>> >>> mentioned OpenLayers.Layer.OSM object.
>> >>>
>> >>> But there still exist some problems. It is not entirely possible to
>> edit
>> >>> the
>> >>> maps with the wicketstuff project. Once the map is rendered there is
>> no
>> >>> problem: dragging, zooming, layerswitching are working. But before
>> >>> rendering
>> >>> not all functions are working. For example the setCenter(lonlat, zoom)
>> >>> function of the wicketstuff openlayers contrib seems to do nothing
>> with
>> >>> the
>> >>> map. Also the setZoom function did not worked at the beginning, but
>> >>> after
>> >>> some changes I got it working.
>> >>>
>> >>> I think the project is not entirely up to date with the openlayers
>> api?
>> >>> Maybe a user who is more familiar with this project could give a
>> >>> statement
>> >>> about the problem.
>> >>>
>> >>>
>> >>>
>> >>>
>> >>>
>> >>> Michael O'Cleirigh wrote:
>> >>> >
>> >>> > Hello,
>> >>> >
>> >>> > Pink tiles means there is a mismatch somewhere between your layers.
>> >>> >
>> >>> > Does your openlayers javascript work correctly? (i.e. when not
>> emitted
>> >>> > from wicket openlayers?)
>> >>> >
>> >>> > This page embeds an openstreet ma

Re: openstreetmap in openlayers

2009-03-10 Thread nino martinez wael
Seems you are on the right track, unfortunately im pretty busy for the time
being, new job + an daugther.. The idea for the wicket-openlayers.js are to
be a integrator between Openlayers.js and wicket so that it provides
facilities to call the wicket ajax back and forth etc. Thats it.. :)

regards Nino

2009/3/7 morbo 

>
> I have to correct myself a little bit. The setCenter method does work! I
> had
> a problem with the coordinates, which were not in the right format. So,
> sorry for that.
>
>
>
>
>
> morbo wrote:
> >
> > Hi Nino,
> >
> > yes, I would love to contribute to this project. But I'm warning you, I
> am
> > not a very experienced javascript developer. :)
> >
> > What I have done so far, was extending the layer class for all osm
> layers.
> > For example I created a OSMMapnik class which contributes
> > "http://www.openstreetmap.org/openlayers/OpenStreetMap.js"; to the header
> > and the getJSConstructer method returns this: return new
> > Constructor("OpenLayers.Layer.OSM.Mapnik").add("'" + getName() +
> > "'").toJS();
> >
> > As you see, I am using the OSM object. This solution works but I think it
> > would be nicer to use the TSM object, as I have done in my first attempt
> > (see above). The problem is that the script does not find the
> > osm_getTileURL method. I am not sure why.
> >
> > Furthermore I modified the setZoom method so, that it calls
> > "zoomTo(zoom)". Thats all.
> >
> > Maybe, you could give a brief introduction how the project works. I am
> not
> > sure if I understand all of your code. Especially the role of the
> > wicket-openlayers.js file and event handling.
> >
> > richard
> >
> >
> >
> >
> > nino martinez wael wrote:
> >>
> >> Hi Richard
> >>
> >> Im the author behind the openlayers contrib, I checked the code last
> time
> >> somewhere in end if december...
> >>
> >> Do you have some patches or further clues on whats not working?
> >>
> >>
> >> Im not directly using the openlayers integration currently so patches
> are
> >> very welcome, even co- coders would be nice :)
> >> regards Nino
> >>
> >> 2009/3/6 morbo 
> >>
> >>>
> >>> Thank you very much. That really helped a lot. I am now able to render
> >>> the
> >>> different openstreetmap layers (mapnik, ti...@home, cycleMap) with the
> >>> above
> >>> mentioned OpenLayers.Layer.OSM object.
> >>>
> >>> But there still exist some problems. It is not entirely possible to
> edit
> >>> the
> >>> maps with the wicketstuff project. Once the map is rendered there is no
> >>> problem: dragging, zooming, layerswitching are working. But before
> >>> rendering
> >>> not all functions are working. For example the setCenter(lonlat, zoom)
> >>> function of the wicketstuff openlayers contrib seems to do nothing with
> >>> the
> >>> map. Also the setZoom function did not worked at the beginning, but
> >>> after
> >>> some changes I got it working.
> >>>
> >>> I think the project is not entirely up to date with the openlayers api?
> >>> Maybe a user who is more familiar with this project could give a
> >>> statement
> >>> about the problem.
> >>>
> >>>
> >>>
> >>>
> >>>
> >>> Michael O'Cleirigh wrote:
> >>> >
> >>> > Hello,
> >>> >
> >>> > Pink tiles means there is a mismatch somewhere between your layers.
> >>> >
> >>> > Does your openlayers javascript work correctly? (i.e. when not
> emitted
> >>> > from wicket openlayers?)
> >>> >
> >>> > This page embeds an openstreet map in openlayers:
> >>> > http://wiki.openstreetmap.org/wiki/OpenLayers
> >>> >
> >>> > But it doesn't use the OpenLayers.Layer.TMS object. It adds its own
> >>> > import (http://openstreetmap.org/openlayers/OpenStreetMap.js ) and
> >>> uses
> >>> > an OpenLayers.Layer.OSM object.
> >>> >
> >>> > Perhaps your integration should use that instead?
> >>> >
> >>> > There is a ticket for something similiar that might get into
> >>> OpenLayers
> >>> > 2.8 (http://trac.openlayers.o

Re: openstreetmap in openlayers

2009-03-07 Thread morbo

I have to correct myself a little bit. The setCenter method does work! I had
a problem with the coordinates, which were not in the right format. So,
sorry for that.





morbo wrote:
> 
> Hi Nino,
> 
> yes, I would love to contribute to this project. But I'm warning you, I am
> not a very experienced javascript developer. :)
> 
> What I have done so far, was extending the layer class for all osm layers.
> For example I created a OSMMapnik class which contributes
> "http://www.openstreetmap.org/openlayers/OpenStreetMap.js"; to the header
> and the getJSConstructer method returns this: return new
> Constructor("OpenLayers.Layer.OSM.Mapnik").add("'" + getName() +
> "'").toJS();
> 
> As you see, I am using the OSM object. This solution works but I think it
> would be nicer to use the TSM object, as I have done in my first attempt
> (see above). The problem is that the script does not find the
> osm_getTileURL method. I am not sure why. 
> 
> Furthermore I modified the setZoom method so, that it calls
> "zoomTo(zoom)". Thats all.
> 
> Maybe, you could give a brief introduction how the project works. I am not
> sure if I understand all of your code. Especially the role of the
> wicket-openlayers.js file and event handling. 
> 
> richard
> 
> 
> 
> 
> nino martinez wael wrote:
>> 
>> Hi Richard
>> 
>> Im the author behind the openlayers contrib, I checked the code last time
>> somewhere in end if december...
>> 
>> Do you have some patches or further clues on whats not working?
>> 
>> 
>> Im not directly using the openlayers integration currently so patches are
>> very welcome, even co- coders would be nice :)
>> regards Nino
>> 
>> 2009/3/6 morbo 
>> 
>>>
>>> Thank you very much. That really helped a lot. I am now able to render
>>> the
>>> different openstreetmap layers (mapnik, ti...@home, cycleMap) with the
>>> above
>>> mentioned OpenLayers.Layer.OSM object.
>>>
>>> But there still exist some problems. It is not entirely possible to edit
>>> the
>>> maps with the wicketstuff project. Once the map is rendered there is no
>>> problem: dragging, zooming, layerswitching are working. But before
>>> rendering
>>> not all functions are working. For example the setCenter(lonlat, zoom)
>>> function of the wicketstuff openlayers contrib seems to do nothing with
>>> the
>>> map. Also the setZoom function did not worked at the beginning, but
>>> after
>>> some changes I got it working.
>>>
>>> I think the project is not entirely up to date with the openlayers api?
>>> Maybe a user who is more familiar with this project could give a
>>> statement
>>> about the problem.
>>>
>>>
>>>
>>>
>>>
>>> Michael O'Cleirigh wrote:
>>> >
>>> > Hello,
>>> >
>>> > Pink tiles means there is a mismatch somewhere between your layers.
>>> >
>>> > Does your openlayers javascript work correctly? (i.e. when not emitted
>>> > from wicket openlayers?)
>>> >
>>> > This page embeds an openstreet map in openlayers:
>>> > http://wiki.openstreetmap.org/wiki/OpenLayers
>>> >
>>> > But it doesn't use the OpenLayers.Layer.TMS object. It adds its own
>>> > import (http://openstreetmap.org/openlayers/OpenStreetMap.js ) and
>>> uses
>>> > an OpenLayers.Layer.OSM object.
>>> >
>>> > Perhaps your integration should use that instead?
>>> >
>>> > There is a ticket for something similiar that might get into
>>> OpenLayers
>>> > 2.8 (http://trac.openlayers.org/ticket/1950)
>>> >
>>> > Mike
>>> >
>>> >> I tried a few things and I think I managed the integration of
>>> >> openstreetmaps.
>>> >> The browser is contacting the osm tile server BUT everything I get
>>> are
>>> >> pink
>>> >> tiles?
>>> >>
>>> >>
>>> >> Here is the output of the final html page:
>>> >>
>>> >> 
>>> >> 
>>> >> Wicket Quickstart Archetype Homepage
>>> >> >> >>
>>> src="resources/org.apache.wicket.markup.html.WicketEventReference/wicket-event.js">
>>> >> >> >>
>>> src="resources/org.apache.wicket.ajax

Re: openstreetmap in openlayers

2009-03-06 Thread morbo

Hi Nino,

yes, I would love to contribute to this project. But I'm warning you, I am
not a very experienced javascript developer. :)

What I have done so far, was extending the layer class for all osm layers.
For example I created a OSMMapnik class which contributes
"http://www.openstreetmap.org/openlayers/OpenStreetMap.js"; to the header and
the getJSConstructer method returns this: return new
Constructor("OpenLayers.Layer.OSM.Mapnik").add("'" + getName() +
"'").toJS();

As you see, I am using the OSM object. This solution works but I think it
would be nicer to use the TSM object, as I have done in my first attempt
(see above). The problem is that the script does not find the osm_getTileURL
method. I am not sure why. 

Furthermore I modified the setZoom method so, that it calls "zoomTo(zoom)".
Thats all.

Maybe, you could give a brief introduction how the project works. I am not
sure if I understand all of your code. Especially the role of the
wicket-openlayers.js file and event handling. 

richard




nino martinez wael wrote:
> 
> Hi Richard
> 
> Im the author behind the openlayers contrib, I checked the code last time
> somewhere in end if december...
> 
> Do you have some patches or further clues on whats not working?
> 
> 
> Im not directly using the openlayers integration currently so patches are
> very welcome, even co- coders would be nice :)
> regards Nino
> 
> 2009/3/6 morbo 
> 
>>
>> Thank you very much. That really helped a lot. I am now able to render
>> the
>> different openstreetmap layers (mapnik, ti...@home, cycleMap) with the
>> above
>> mentioned OpenLayers.Layer.OSM object.
>>
>> But there still exist some problems. It is not entirely possible to edit
>> the
>> maps with the wicketstuff project. Once the map is rendered there is no
>> problem: dragging, zooming, layerswitching are working. But before
>> rendering
>> not all functions are working. For example the setCenter(lonlat, zoom)
>> function of the wicketstuff openlayers contrib seems to do nothing with
>> the
>> map. Also the setZoom function did not worked at the beginning, but after
>> some changes I got it working.
>>
>> I think the project is not entirely up to date with the openlayers api?
>> Maybe a user who is more familiar with this project could give a
>> statement
>> about the problem.
>>
>>
>>
>>
>>
>> Michael O'Cleirigh wrote:
>> >
>> > Hello,
>> >
>> > Pink tiles means there is a mismatch somewhere between your layers.
>> >
>> > Does your openlayers javascript work correctly? (i.e. when not emitted
>> > from wicket openlayers?)
>> >
>> > This page embeds an openstreet map in openlayers:
>> > http://wiki.openstreetmap.org/wiki/OpenLayers
>> >
>> > But it doesn't use the OpenLayers.Layer.TMS object. It adds its own
>> > import (http://openstreetmap.org/openlayers/OpenStreetMap.js ) and uses
>> > an OpenLayers.Layer.OSM object.
>> >
>> > Perhaps your integration should use that instead?
>> >
>> > There is a ticket for something similiar that might get into OpenLayers
>> > 2.8 (http://trac.openlayers.org/ticket/1950)
>> >
>> > Mike
>> >
>> >> I tried a few things and I think I managed the integration of
>> >> openstreetmaps.
>> >> The browser is contacting the osm tile server BUT everything I get are
>> >> pink
>> >> tiles?
>> >>
>> >>
>> >> Here is the output of the final html page:
>> >>
>> >> 
>> >> 
>> >> Wicket Quickstart Archetype Homepage
>> >> > >>
>> src="resources/org.apache.wicket.markup.html.WicketEventReference/wicket-event.js">
>> >> > >>
>> src="resources/org.apache.wicket.ajax.WicketAjaxReference/wicket-ajax.js">
>> >> > >>
>> src="resources/org.apache.wicket.ajax.AbstractDefaultAjaxBehavior/wicket-ajax-debug.js">
>> >> > >> id="wicket-ajax-debug-enable"><!--/*--><![CDATA[/*><!--*/
>> >> wicketAjaxDebugEnable=true;
>> >> /*-->]]>*/
>> >>
>> >> > >> src="<a  rel="nofollow" href="http://openlayers.org/api/OpenLayers.js"">http://openlayers.org/api/OpenLayers.js"</a>;>
>> >>
>> >> > >>
>> src="resources/org.wicketstuff.openlayers.OpenLayersMap/

Re: openstreetmap in openlayers

2009-03-06 Thread nino martinez wael
Hi Richard

Im the author behind the openlayers contrib, I checked the code last time
somewhere in end if december...

Do you have some patches or further clues on whats not working?


Im not directly using the openlayers integration currently so patches are
very welcome, even co- coders would be nice :)
regards Nino

2009/3/6 morbo 

>
> Thank you very much. That really helped a lot. I am now able to render the
> different openstreetmap layers (mapnik, ti...@home, cycleMap) with the
> above
> mentioned OpenLayers.Layer.OSM object.
>
> But there still exist some problems. It is not entirely possible to edit
> the
> maps with the wicketstuff project. Once the map is rendered there is no
> problem: dragging, zooming, layerswitching are working. But before
> rendering
> not all functions are working. For example the setCenter(lonlat, zoom)
> function of the wicketstuff openlayers contrib seems to do nothing with the
> map. Also the setZoom function did not worked at the beginning, but after
> some changes I got it working.
>
> I think the project is not entirely up to date with the openlayers api?
> Maybe a user who is more familiar with this project could give a statement
> about the problem.
>
>
>
>
>
> Michael O'Cleirigh wrote:
> >
> > Hello,
> >
> > Pink tiles means there is a mismatch somewhere between your layers.
> >
> > Does your openlayers javascript work correctly? (i.e. when not emitted
> > from wicket openlayers?)
> >
> > This page embeds an openstreet map in openlayers:
> > http://wiki.openstreetmap.org/wiki/OpenLayers
> >
> > But it doesn't use the OpenLayers.Layer.TMS object. It adds its own
> > import (http://openstreetmap.org/openlayers/OpenStreetMap.js ) and uses
> > an OpenLayers.Layer.OSM object.
> >
> > Perhaps your integration should use that instead?
> >
> > There is a ticket for something similiar that might get into OpenLayers
> > 2.8 (http://trac.openlayers.org/ticket/1950)
> >
> > Mike
> >
> >> I tried a few things and I think I managed the integration of
> >> openstreetmaps.
> >> The browser is contacting the osm tile server BUT everything I get are
> >> pink
> >> tiles?
> >>
> >>
> >> Here is the output of the final html page:
> >>
> >> 
> >> 
> >> Wicket Quickstart Archetype Homepage
> >>  >>
> src="resources/org.apache.wicket.markup.html.WicketEventReference/wicket-event.js">
> >>  >>
> src="resources/org.apache.wicket.ajax.WicketAjaxReference/wicket-ajax.js">
> >>  >>
> src="resources/org.apache.wicket.ajax.AbstractDefaultAjaxBehavior/wicket-ajax-debug.js">
> >>  >> id="wicket-ajax-debug-enable"><!--/*--><![CDATA[/*><!--*/
> >> wicketAjaxDebugEnable=true;
> >> /*-->]]>*/
> >>
> >>  >> src="<a  rel="nofollow" href="http://openlayers.org/api/OpenLayers.js"">http://openlayers.org/api/OpenLayers.js"</a>;>
> >>
> >>  >>
> src="resources/org.wicketstuff.openlayers.OpenLayersMap/wicket-openlayersmap.js">
> >> <!--/*--><![CDATA[/*><!--*/
> >> Wicket.Event.add(window, "load", function(event) { function
> >> osm_getTileURL(bounds) {var res = this.map.getResolution();var x =
> >> Math.round((bounds.left - this.maxExtent.left) / (res *
> >> this.tileSize.w));var y = Math.round((this.maxExtent.top - bounds.top) /
> >> (res * this.tileSize.h)); var z = this.map.getZoom(); var limit =
> >> Math.pow(2, z);   if (y < 0 || y >= limit) { return
> >> OpenLayers.Util.getImagesLocation() + '404.png'; } else { x = ((x %
> >> limit) +
> >> limit) % limit; return this.url + z + '/' + x + '/' + y + '.' +
> >> this.type; }  }  ;});
> >> /*-->]]>*/
> >>
> >> <!--/*--><![CDATA[/*><!--*/
> >> Wicket.Event.add(window, "domready", function(event) {
> >> var options = {maxResolution: 156543.0339,
> >> projection: new OpenLayers.Projection('EPSG:900913'),
> >> numZoomLevels:18,
> >> maxExtent: new OpenLayers.Bounds(-20037508.34, -20037508.34,
> 20037508.34,
> >> 20037508.34),
> >> units: 'm',
> >> displayProjection: new OpenLayers.Projection('EPSG:4326')};
> >> new WicketOMap(

Re: openstreetmap in openlayers

2009-03-06 Thread morbo

Thank you very much. That really helped a lot. I am now able to render the
different openstreetmap layers (mapnik, ti...@home, cycleMap) with the above
mentioned OpenLayers.Layer.OSM object.

But there still exist some problems. It is not entirely possible to edit the
maps with the wicketstuff project. Once the map is rendered there is no
problem: dragging, zooming, layerswitching are working. But before rendering
not all functions are working. For example the setCenter(lonlat, zoom)
function of the wicketstuff openlayers contrib seems to do nothing with the
map. Also the setZoom function did not worked at the beginning, but after
some changes I got it working.

I think the project is not entirely up to date with the openlayers api?
Maybe a user who is more familiar with this project could give a statement
about the problem.





Michael O'Cleirigh wrote:
> 
> Hello,
> 
> Pink tiles means there is a mismatch somewhere between your layers.
> 
> Does your openlayers javascript work correctly? (i.e. when not emitted 
> from wicket openlayers?)
> 
> This page embeds an openstreet map in openlayers: 
> http://wiki.openstreetmap.org/wiki/OpenLayers
> 
> But it doesn't use the OpenLayers.Layer.TMS object. It adds its own 
> import (http://openstreetmap.org/openlayers/OpenStreetMap.js ) and uses  
> an OpenLayers.Layer.OSM object.
> 
> Perhaps your integration should use that instead?
> 
> There is a ticket for something similiar that might get into OpenLayers 
> 2.8 (http://trac.openlayers.org/ticket/1950)
> 
> Mike
> 
>> I tried a few things and I think I managed the integration of
>> openstreetmaps.
>> The browser is contacting the osm tile server BUT everything I get are
>> pink
>> tiles?
>>
>>
>> Here is the output of the final html page:
>>
>> 
>> 
>> Wicket Quickstart Archetype Homepage
>> > src="resources/org.apache.wicket.markup.html.WicketEventReference/wicket-event.js">
>> > src="resources/org.apache.wicket.ajax.WicketAjaxReference/wicket-ajax.js">
>> > src="resources/org.apache.wicket.ajax.AbstractDefaultAjaxBehavior/wicket-ajax-debug.js">
>> > id="wicket-ajax-debug-enable"><!--/*--><![CDATA[/*><!--*/
>> wicketAjaxDebugEnable=true;
>> /*-->]]>*/
>>
>> > src="<a  rel="nofollow" href="http://openlayers.org/api/OpenLayers.js"">http://openlayers.org/api/OpenLayers.js"</a>;>
>>
>> > src="resources/org.wicketstuff.openlayers.OpenLayersMap/wicket-openlayersmap.js">
>> <!--/*--><![CDATA[/*><!--*/
>> Wicket.Event.add(window, "load", function(event) { function
>> osm_getTileURL(bounds) {var res = this.map.getResolution();var x =
>> Math.round((bounds.left - this.maxExtent.left) / (res *
>> this.tileSize.w));var y = Math.round((this.maxExtent.top - bounds.top) /
>> (res * this.tileSize.h)); var z = this.map.getZoom(); var limit =
>> Math.pow(2, z);   if (y < 0 || y >= limit) { return
>> OpenLayers.Util.getImagesLocation() + '404.png'; } else { x = ((x %
>> limit) +
>> limit) % limit; return this.url + z + '/' + x + '/' + y + '.' +
>> this.type; }  }  ;});
>> /*-->]]>*/
>>
>> <!--/*--><![CDATA[/*><!--*/
>> Wicket.Event.add(window, "domready", function(event) { 
>> var options = {maxResolution: 156543.0339,
>> projection: new OpenLayers.Projection('EPSG:900913'),
>> numZoomLevels:18,
>> maxExtent: new OpenLayers.Bounds(-20037508.34, -20037508.34, 20037508.34,
>> 20037508.34),
>> units: 'm',
>> displayProjection: new OpenLayers.Projection('EPSG:4326')};
>> new WicketOMap('map7', options);
>> var osm23008635 =new OpenLayers.Layer.TMS('OpenStreetMap (Mapnik)',
>> '<a  rel="nofollow" href="http://tile.openstreetmap.org/">http://tile.openstreetmap.org/</a>', {type: 'png',
>> attribution:  <a  rel="nofollow" href="http://www.openstreetmap.org/">http://www.openstreetmap.org/</a> OpenStreetMap ,
>> displayOutsideMaxExtent: true});
>> Wicket.omaps['map7'].addLayer(osm23008635,23008635);
>> Wicket.omaps['map7'].zoomToMaxExtent();
>> Wicket.omaps['map7'].addControl('LayerSwitcher', new
>> OpenLayers.Control.LayerSwitcher());
>> Wicket.omaps['map7'].setPopupId('content8');
>> ;});
>> /*-->]]>*/
>>
>> 
>> 
>> 
>> 
>>  > id="infoWindow9">
>>
>>  > id="content8">
>>  
>> 
>>  
>>  > id="map7">
>>  
>>
>> 
>> 
>>
>>
>> Any ideas?
>>
>>
>>   
> 
> 
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
> 
> 
> 

-- 
View this message in context: 
http://www.nabble.com/openstreetmap-in-openlayers-tp22329429p22369076.html
Sent from the Wicket - User mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: openstreetmap in openlayers

2009-03-04 Thread Michael O'Cleirigh

Hello,

Pink tiles means there is a mismatch somewhere between your layers.

Does your openlayers javascript work correctly? (i.e. when not emitted 
from wicket openlayers?)


This page embeds an openstreet map in openlayers: 
http://wiki.openstreetmap.org/wiki/OpenLayers


But it doesn't use the OpenLayers.Layer.TMS object. It adds its own 
import (http://openstreetmap.org/openlayers/OpenStreetMap.js ) and uses  
an OpenLayers.Layer.OSM object.


Perhaps your integration should use that instead?

There is a ticket for something similiar that might get into OpenLayers 
2.8 (http://trac.openlayers.org/ticket/1950)


Mike


I tried a few things and I think I managed the integration of openstreetmaps.
The browser is contacting the osm tile server BUT everything I get are pink
tiles?


Here is the output of the final html page:



Wicket Quickstart Archetype Homepage



<!--/*--><![CDATA[/*><!--*/
wicketAjaxDebugEnable=true;
/*-->]]>*/

http://openlayers.org/api/OpenLayers.js"</a>;>


<!--/*--><![CDATA[/*><!--*/
Wicket.Event.add(window, "load", function(event) { function
osm_getTileURL(bounds) {var res = this.map.getResolution();var x =
Math.round((bounds.left - this.maxExtent.left) / (res *
this.tileSize.w));var y = Math.round((this.maxExtent.top - bounds.top) /
(res * this.tileSize.h)); var z = this.map.getZoom(); var limit =
Math.pow(2, z);   if (y < 0 || y >= limit) { return
OpenLayers.Util.getImagesLocation() + '404.png'; } else { x = ((x % limit) +
limit) % limit;return this.url + z + '/' + x + '/' + y + '.' +
this.type; }  } ;});
/*-->]]>*/

<!--/*--><![CDATA[/*><!--*/
</pre><tt>Wicket.Event.add(window, "domready", function(event) { 
</tt><tt>var options = {maxResolution: 156543.0339,
</tt><pre style="margin: 0em;">
projection: new OpenLayers.Projection('EPSG:900913'),
numZoomLevels:18,
maxExtent: new OpenLayers.Bounds(-20037508.34, -20037508.34, 20037508.34,
20037508.34),
units: 'm',
displayProjection: new OpenLayers.Projection('EPSG:4326')};
new WicketOMap('map7', options);
var osm23008635 =new OpenLayers.Layer.TMS('OpenStreetMap (Mapnik)',
'<a  rel="nofollow" href="http://tile.openstreetmap.org/">http://tile.openstreetmap.org/</a>', {type: 'png',
attribution:  <a  rel="nofollow" href="http://www.openstreetmap.org/">http://www.openstreetmap.org/</a> OpenStreetMap ,
displayOutsideMaxExtent: true});
Wicket.omaps['map7'].addLayer(osm23008635,23008635);
Wicket.omaps['map7'].zoomToMaxExtent();
Wicket.omaps['map7'].addControl('LayerSwitcher', new
OpenLayers.Control.LayerSwitcher());
Wicket.omaps['map7'].setPopupId('content8');
;});
/*-->]]>*/













   





Any ideas?


  



-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: openstreetmap in openlayers

2009-03-04 Thread morbo

I tried a few things and I think I managed the integration of openstreetmaps.
The browser is contacting the osm tile server BUT everything I get are pink
tiles?


Here is the output of the final html page:



Wicket Quickstart Archetype Homepage



<!--/*--><![CDATA[/*><!--*/
wicketAjaxDebugEnable=true;
/*-->]]>*/

http://openlayers.org/api/OpenLayers.js"</a>;>


<!--/*--><![CDATA[/*><!--*/
Wicket.Event.add(window, "load", function(event) { function
osm_getTileURL(bounds) {var res = this.map.getResolution();var x =
Math.round((bounds.left - this.maxExtent.left) / (res *
this.tileSize.w));var y = Math.round((this.maxExtent.top - bounds.top) /
(res * this.tileSize.h)); var z = this.map.getZoom(); var limit =
Math.pow(2, z);   if (y < 0 || y >= limit) { return
OpenLayers.Util.getImagesLocation() + '404.png'; } else { x = ((x % limit) +
limit) % limit;return this.url + z + '/' + x + '/' + y + '.' +
this.type; }  } ;});
/*-->]]>*/

<!--/*--><![CDATA[/*><!--*/
Wicket.Event.add(window, "domready", function(event) { 
var options = {maxResolution: 156543.0339,
projection: new OpenLayers.Projection('EPSG:900913'),
numZoomLevels:18,
maxExtent: new OpenLayers.Bounds(-20037508.34, -20037508.34, 20037508.34,
20037508.34),
units: 'm',
displayProjection: new OpenLayers.Projection('EPSG:4326')};
new WicketOMap('map7', options);
var osm23008635 =new OpenLayers.Layer.TMS('OpenStreetMap (Mapnik)',
'<a  rel="nofollow" href="http://tile.openstreetmap.org/">http://tile.openstreetmap.org/</a>', {type: 'png',
attribution:  <a  rel="nofollow" href="http://www.openstreetmap.org/">http://www.openstreetmap.org/</a> OpenStreetMap ,
displayOutsideMaxExtent: true});
Wicket.omaps['map7'].addLayer(osm23008635,23008635);
Wicket.omaps['map7'].zoomToMaxExtent();
Wicket.omaps['map7'].addControl('LayerSwitcher', new
OpenLayers.Control.LayerSwitcher());
Wicket.omaps['map7'].setPopupId('content8');
;});
/*-->]]>*/













   




Any ideas?


-- 
View this message in context: 
http://www.nabble.com/openstreetmap-in-openlayers-tp22329429p22336109.html
Sent from the Wicket - User mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



openstreetmap in openlayers

2009-03-04 Thread morbo

This is my first message to this mailinglist, so first of all: Hello
everyone!

I want to use wicket together with openlayers in my webapp. Therefore I
looked at the openlayers contrib project on wicketstuff, which seems pretty
cool.

I managed to embed a wms and gmap, but I need to use openstreetmap due to
license issues.
I am not sure how to do this with the wicketstuff openlayers api. Is there a
simple way to realize this, already? 

When I looked at the api I found an abstract layer class. Should I extend
this class to add the openstreetmap layer?
-- 
View this message in context: 
http://www.nabble.com/openstreetmap-in-openlayers-tp22329429p22329429.html
Sent from the Wicket - User mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



[Announce] new stuff in wicketstuff openlayers..

2008-12-09 Thread Nino Saturnino Martinez Vazquez Wael

Hi Guys

I've updated the wicketstuff openlayers and put in a few new things. You 
can read more about it in my blog :


http://ninomartinez.wordpress.com/2008/12/09/new-stuff-in-wicketstuff-openlayers-integration/

And btw, please say if theres some feature you'd like in it. I might be 
able to put it in.


--
-Wicket for love

Nino Martinez Wael
Java Specialist @ Jayway DK
http://www.jayway.dk
+45 2936 7684


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



pimping Openlayers in wicket stuff core...

2008-12-04 Thread Nino Saturnino Martinez Vazquez Wael

Hi Guys

I'll be putting in direct JTS 
(http://www.vividsolutions.com/jts/main.htm) support in Openlayers 
contrib. Any objections to this? This means that the API will break, 
since I'll be using JTS "points" instead of the homegrown classes as 
currently. Also I plan to support drawing shapes on screen.


If have any input on this please say so..

--
-Wicket for love

Nino Martinez Wael
Java Specialist @ Jayway DK
http://www.jayway.dk
+45 2936 7684


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [announce] Openlayers contrib upgraded to 1.4-SNAPSHOT

2008-08-26 Thread Jörn Zaefferer
Ah, thanks Nino!

Jörn

On Wed, Aug 27, 2008 at 12:45 AM, Nino Saturnino Martinez Vazquez Wael
<[EMAIL PROTECTED]> wrote:
> I am refering to
> http://wicketstuff.org/confluence/display/STUFFWIKI/wicket-contrib-openlayers
>
> Openlayer components for wicket:) Previously only supported wicket 1.3,
> although a pretty trivial upgrade I thought it nice to announce it.
>
> If you combine the openlayer contrib, wicket and geoserver you have a kick
> ass opportunity to make geo apps very very easy.
>
> And btw the problem I had with my smoketest were just loong response times
> from labs.meta data so no problems at all.
>
> Jörn Zaefferer wrote:
>>
>> I guess I missed previous discussions or announcements - but based on
>> your mail and the URL you provide I have no idea what you are talking
>> about, eg. how openlayers is related to Wicket and the 1.4-SNAPSHOT.
>> Could you give some more details for those uninvolved in the
>> development?
>>
>> Thanks
>> Jörn
>>
>> On Tue, Aug 26, 2008 at 8:46 PM, Nino Saturnino Martinez Vazquez Wael
>> <[EMAIL PROTECTED]> wrote:
>>
>>>
>>> So there it are for your pleasure..
>>>
>>> I've smoke tested it manually, and it seems to be working. However it
>>> seems
>>> there are a problem with the map provider, it's there on
>>> http://openlayers.org/ too. But i've previously experienced it to be
>>> unstable.
>>>
>>> Feel free to come with propositions on howto apply generics where I
>>> haven't
>>> (remember it were a 1.5 project from the begining). Or any other ideas
>>> are
>>> welcome.
>>>
>>> --
>>> -Wicket for love
>>>
>>> Nino Martinez Wael
>>> Java Specialist @ Jayway DK
>>> http://www.jayway.dk
>>> +45 2936 7684
>>>
>>>
>>> -
>>> To unsubscribe, e-mail: [EMAIL PROTECTED]
>>> For additional commands, e-mail: [EMAIL PROTECTED]
>>>
>>>
>>>
>
> --
> -Wicket for love
>
> Nino Martinez Wael
> Java Specialist @ Jayway DK
> http://www.jayway.dk
> +45 2936 7684
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>


Re: [announce] Openlayers contrib upgraded to 1.4-SNAPSHOT

2008-08-26 Thread Nino Saturnino Martinez Vazquez Wael
I am refering to 
http://wicketstuff.org/confluence/display/STUFFWIKI/wicket-contrib-openlayers


Openlayer components for wicket:) Previously only supported wicket 1.3, 
although a pretty trivial upgrade I thought it nice to announce it.


If you combine the openlayer contrib, wicket and geoserver you have a 
kick ass opportunity to make geo apps very very easy.


And btw the problem I had with my smoketest were just loong response 
times from labs.meta data so no problems at all.


Jörn Zaefferer wrote:

I guess I missed previous discussions or announcements - but based on
your mail and the URL you provide I have no idea what you are talking
about, eg. how openlayers is related to Wicket and the 1.4-SNAPSHOT.
Could you give some more details for those uninvolved in the
development?

Thanks
Jörn

On Tue, Aug 26, 2008 at 8:46 PM, Nino Saturnino Martinez Vazquez Wael
<[EMAIL PROTECTED]> wrote:
  

So there it are for your pleasure..

I've smoke tested it manually, and it seems to be working. However it seems
there are a problem with the map provider, it's there on
http://openlayers.org/ too. But i've previously experienced it to be
unstable.

Feel free to come with propositions on howto apply generics where I haven't
(remember it were a 1.5 project from the begining). Or any other ideas are
welcome.

--
-Wicket for love

Nino Martinez Wael
Java Specialist @ Jayway DK
http://www.jayway.dk
+45 2936 7684


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]





--
-Wicket for love

Nino Martinez Wael
Java Specialist @ Jayway DK
http://www.jayway.dk
+45 2936 7684


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [announce] Openlayers contrib upgraded to 1.4-SNAPSHOT

2008-08-26 Thread Jörn Zaefferer
I guess I missed previous discussions or announcements - but based on
your mail and the URL you provide I have no idea what you are talking
about, eg. how openlayers is related to Wicket and the 1.4-SNAPSHOT.
Could you give some more details for those uninvolved in the
development?

Thanks
Jörn

On Tue, Aug 26, 2008 at 8:46 PM, Nino Saturnino Martinez Vazquez Wael
<[EMAIL PROTECTED]> wrote:
> So there it are for your pleasure..
>
> I've smoke tested it manually, and it seems to be working. However it seems
> there are a problem with the map provider, it's there on
> http://openlayers.org/ too. But i've previously experienced it to be
> unstable.
>
> Feel free to come with propositions on howto apply generics where I haven't
> (remember it were a 1.5 project from the begining). Or any other ideas are
> welcome.
>
> --
> -Wicket for love
>
> Nino Martinez Wael
> Java Specialist @ Jayway DK
> http://www.jayway.dk
> +45 2936 7684
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>


[announce] Openlayers contrib upgraded to 1.4-SNAPSHOT

2008-08-26 Thread Nino Saturnino Martinez Vazquez Wael

So there it are for your pleasure..

I've smoke tested it manually, and it seems to be working. However it 
seems there are a problem with the map provider, it's there on 
http://openlayers.org/ too. But i've previously experienced it to be 
unstable.


Feel free to come with propositions on howto apply generics where I 
haven't (remember it were a 1.5 project from the begining). Or any other 
ideas are welcome.


--
-Wicket for love

Nino Martinez Wael
Java Specialist @ Jayway DK
http://www.jayway.dk
+45 2936 7684


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: OpenLayers

2008-04-02 Thread Nino Saturnino Martinez Vazquez Wael

Yup, I did it..:) Feedback are welcome:)

Martijn Dashorst wrote:

I think it is in wicket stuff

On 4/2/08, Uwe Schäfer <[EMAIL PROTECTED]> wrote:
  

hi

 has anyone ever heared of a OpenLayer Component for Wicket ?

 cu uwe


-
 To unsubscribe, e-mail:
[EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]






  


--
-Wicket for love

Nino Martinez Wael
Java Specialist @ Jayway DK
http://www.jayway.dk
+45 2936 7684


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: OpenLayers

2008-04-02 Thread Martijn Dashorst
I think it is in wicket stuff

On 4/2/08, Uwe Schäfer <[EMAIL PROTECTED]> wrote:
> hi
>
>  has anyone ever heared of a OpenLayer Component for Wicket ?
>
>  cu uwe
>
>
> -
>  To unsubscribe, e-mail:
> [EMAIL PROTECTED]
>  For additional commands, e-mail: [EMAIL PROTECTED]
>
>


-- 
Buy Wicket in Action: http://manning.com/dashorst
Apache Wicket 1.3.2 is released
Get it now: http://www.apache.org/dyn/closer.cgi/wicket/1.3.2

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



OpenLayers

2008-04-02 Thread Uwe Schäfer

hi

has anyone ever heared of a OpenLayer Component for Wicket ?

cu uwe


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[wicket-stuff][announce] : wicket-contrib-openlayers

2008-02-04 Thread Nino Saturnino Martinez Vazquez Wael

Hi

As I talked about some time ago, I wanted todo a openlayers contrib. And 
now here it are:


http://wicketstuff.org/confluence/display/STUFFWIKI/wicket-contrib-openlayers

It's been heavly inspired by gmap2 contrib, so dont be surprised if some 
comments or etc are legacy from there...


Also there a some class's which should be ported completely, they still 
have the names from gmap2 contrib and are not being used currently.


Check out the examples on what you can do with this first version.

regards Nino

--
Nino Martinez Wael
Java Specialist @ Jayway DK
http://www.jayway.dk
+45 2936 7684


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: openlayers

2008-02-01 Thread Nino Saturnino Martinez Vazquez Wael

Hi

Is now working and you can add markers(with popups) to your map. 
Currently only wms maps are supported. It still needs some cleaning. And 
I still need to write a example..


regards Nino

Nino Saturnino Martinez Vazquez Wael wrote:
i've begun work on this.. currently its VERY unstable and 
unrecommended to use..


Nino Saturnino Martinez Vazquez Wael wrote:

Hi

At some point someone talked about creating something around open 
layers. However nothing but the project structure are checked in, so 
I guess i'll continue on that, if its okay?



regards





--
Nino Martinez Wael
Java Specialist @ Jayway DK
http://www.jayway.dk
+45 2936 7684


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: openlayers

2008-01-25 Thread Nino Saturnino Martinez Vazquez Wael

it's about maps in a dozenz of ways.

Erik van Oosten wrote:

http://openlayers.org/

My summary:
A javascript library to combine spatial information from different
sources on one page.


Nick Heudecker wrote:
  

What is openlayers?

  




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


  


--
Nino Martinez Wael
Java Specialist @ Jayway DK
http://www.jayway.dk
+45 2936 7684


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: openlayers

2008-01-25 Thread Erik van Oosten
http://openlayers.org/

My summary:
A javascript library to combine spatial information from different
sources on one page.


Nick Heudecker wrote:
> What is openlayers?
>
>   
>

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: openlayers

2008-01-25 Thread Nick Heudecker
What is openlayers?

On Jan 25, 2008 1:59 AM, Peter Neubauer <[EMAIL PROTECTED]> wrote:

> Cool,
> I hope we can get this to a more stable state in the next couple of
> days so others can jump in and help out. Is anyone interested? The OL
> and GeoServer combo seems to be a very appealing combination for
> rolling your own mapping  apps.
>
> /peter
>
> On Jan 24, 2008 5:42 PM, Nino Saturnino Martinez Vazquez Wael
> <[EMAIL PROTECTED]> wrote:
> > i've begun work on this.. currently its VERY unstable and unrecommended
> > to use..
> >
> >
> > Nino Saturnino Martinez Vazquez Wael wrote:
> > > Hi
> > >
> > > At some point someone talked about creating something around open
> > > layers. However nothing but the project structure are checked in, so I
> > > guess i'll continue on that, if its okay?
> > >
> > >
> > > regards
> > >
> >
> > --
> > Nino Martinez Wael
> > Java Specialist @ Jayway DK
> > http://www.jayway.dk
> > +45 2936 7684
> >
> >
> > -
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
> >
> >
>
>
>
> --
> GTalk:neubauer.peter
> Skypepeter.neubauer
> ICQ18762544
> GTalkneubauer.peter
> Phone   +46704 106975
> Mail   [EMAIL PROTECTED]
> LinkedIn   http://www.linkedin.com/in/neubauer
>
> http://www.neo4j.org - New Energy for Data - the Netbase.
> http://www.ops4j.org - New Energy for OSS Communities - Open
> Participation Software.
> http://www.qi4j.org- New Energy for Java - Domain Driven
> Development.
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>


-- 
Nick Heudecker
Professional Wicket Training & Consulting
http://www.systemmobile.com

Eventful - Intelligent Event Management
http://www.eventfulhq.com


Re: openlayers

2008-01-25 Thread Edward Yakop
I'm interested :)

Regards,
Edward Yakop

On 1/25/08, Peter Neubauer <[EMAIL PROTECTED]> wrote:
> Cool,
> I hope we can get this to a more stable state in the next couple of
> days so others can jump in and help out. Is anyone interested? The OL
> and GeoServer combo seems to be a very appealing combination for
> rolling your own mapping  apps.
>
> /peter
>
> On Jan 24, 2008 5:42 PM, Nino Saturnino Martinez Vazquez Wael
> <[EMAIL PROTECTED]> wrote:
> > i've begun work on this.. currently its VERY unstable and unrecommended
> > to use..
> >
> >
> > Nino Saturnino Martinez Vazquez Wael wrote:
> > > Hi
> > >
> > > At some point someone talked about creating something around open
> > > layers. However nothing but the project structure are checked in, so I
> > > guess i'll continue on that, if its okay?
> > >
> > >
> > > regards
> > >
> >
> > --
> > Nino Martinez Wael
> > Java Specialist @ Jayway DK
> > http://www.jayway.dk
> > +45 2936 7684
> >
> >
> > -
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
> >
> >
>
>
>
> --
> GTalk:neubauer.peter
> Skypepeter.neubauer
> ICQ18762544
> GTalkneubauer.peter
> Phone   +46704 106975
> Mail   [EMAIL PROTECTED]
> LinkedIn   http://www.linkedin.com/in/neubauer
>
> http://www.neo4j.org - New Energy for Data - the Netbase.
> http://www.ops4j.org - New Energy for OSS Communities - Open
> Participation Software.
> http://www.qi4j.org- New Energy for Java - Domain Driven
> Development.
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: openlayers

2008-01-24 Thread Peter Neubauer
Cool,
I hope we can get this to a more stable state in the next couple of
days so others can jump in and help out. Is anyone interested? The OL
and GeoServer combo seems to be a very appealing combination for
rolling your own mapping  apps.

/peter

On Jan 24, 2008 5:42 PM, Nino Saturnino Martinez Vazquez Wael
<[EMAIL PROTECTED]> wrote:
> i've begun work on this.. currently its VERY unstable and unrecommended
> to use..
>
>
> Nino Saturnino Martinez Vazquez Wael wrote:
> > Hi
> >
> > At some point someone talked about creating something around open
> > layers. However nothing but the project structure are checked in, so I
> > guess i'll continue on that, if its okay?
> >
> >
> > regards
> >
>
> --
> Nino Martinez Wael
> Java Specialist @ Jayway DK
> http://www.jayway.dk
> +45 2936 7684
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>



-- 
GTalk:neubauer.peter
Skypepeter.neubauer
ICQ18762544
GTalkneubauer.peter
Phone   +46704 106975
Mail   [EMAIL PROTECTED]
LinkedIn   http://www.linkedin.com/in/neubauer

http://www.neo4j.org - New Energy for Data - the Netbase.
http://www.ops4j.org - New Energy for OSS Communities - Open
Participation Software.
http://www.qi4j.org- New Energy for Java - Domain Driven Development.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: openlayers

2008-01-24 Thread Nino Saturnino Martinez Vazquez Wael
i've begun work on this.. currently its VERY unstable and unrecommended 
to use..


Nino Saturnino Martinez Vazquez Wael wrote:

Hi

At some point someone talked about creating something around open 
layers. However nothing but the project structure are checked in, so I 
guess i'll continue on that, if its okay?



regards



--
Nino Martinez Wael
Java Specialist @ Jayway DK
http://www.jayway.dk
+45 2936 7684


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



openlayers

2008-01-23 Thread Nino Saturnino Martinez Vazquez Wael

Hi

At some point someone talked about creating something around open 
layers. However nothing but the project structure are checked in, so I 
guess i'll continue on that, if its okay?



regards

--
Nino Martinez Wael
Java Specialist @ Jayway DK
http://www.jayway.dk
+45 2936 7684


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]