| bio | website | |
|---|---|---|
| location | ||
| age | ||
| visits | member for | 6 months |
| seen | 4 hours ago | |
| stats | profile views | 18 |
|
Dec 20 |
comment |
How to colour polygons with a completely transparent fill using MapServer? There is no need to convert polygons to lines - you can define 'TYPE line' for layer in MAP file also for polygon geometry |
|
Dec 20 |
comment |
Cannot reselect polygon after modify No, I didn't modify OL source. And I was using DrawFeature control and featureadded event - so it's not your case, it's just idea, that you may try out. It was something like layer.events.on({'featureadded': function() {setTimeout('function_that_does_actual_stuff();', 100) }}); |
|
Dec 20 |
comment |
Cannot reselect polygon after modify I had similar (but not exactly same) situation with DrawFeature control and point features. As ugly solution: on event handler I did setTimeout (for 100 ms, for example) for code, that selects feature. Reason - after executing callback for event, DrawFeature control had some more code to execute, that ruined things. setTimeout allowed control to finish it's job correctly. |
|
Dec 19 |
comment |
Differences in costs of open-source hosted GIS software? "As for charging for QGIS, they will be hosting it on their server so I guess that's what they're charging for." - what, on earth, is hosting desktop application in server? |
|
Dec 18 |
answered | OpenLayers polygon fill not working with GeoJSON file as source |
|
Dec 18 |
comment |
How to display a lot of images with OpenLayers? Basically you don't need to do any calculations, you need just x1 y1 x2 y2 for each image. But, as said, that solution doesn't work correctly because of feature rendering issue. |
|
Dec 18 |
comment |
How to display a lot of images with OpenLayers? You could create WMS service with Geoserver, that servers all images. Each image should be in separate layer (separate layer in WMS service, not separate layer in OpenLayers) and it should be turned off by default. In OpenLayers, create one WMS layer and control enabled layer by checboxes (layers=image1,image4,etc in request string). |
|
Dec 17 |
comment |
How to display a lot of images with OpenLayers? OK, in that case features with regular style aren't suitable. But it's possible to change style dynamically with context functions, so you can compute their size accordingly to resolution. I modified my original posting. |
|
Dec 17 |
revised |
How to display a lot of images with OpenLayers? added 380 characters in body |
|
Dec 17 |
answered | How to display a lot of images with OpenLayers? |
|
Dec 17 |
comment |
software architecture for creating routes? You have to give more information about current technical solution - there's "device" (laptop? tablet? cell phone?) with GPS receiver. How do you collect GPS data - do you read it directly with OpenLayers? Is there any database involved? Are those coordinates sent also to some kind of server? |
|
Dec 12 |
answered | How to highlight kml features in openlayers |
|
Dec 12 |
revised |
OpenLayers AnimatedCluster delete all features added 174 characters in body |
|
Dec 12 |
awarded | Enthusiast |
|
Dec 11 |
answered | OpenLayers make feature not clickable |
|
Dec 11 |
revised |
OpenLayers AnimatedCluster delete all features added 41 characters in body |
|
Dec 11 |
answered | OpenLayers AnimatedCluster delete all features |
|
Dec 10 |
revised |
What is “n” in calculating tiles? deleted 31 characters in body |
|
Dec 10 |
comment |
Caching / Preloading data for use with WMS queries But why is your query so slow? Optimized query with correct use of indexes should be really fast, despite of data amount. |
|
Dec 10 |
comment |
Web based spatial data editor In addition to commercial software, it's possible to write to write application for that, using open source components like OpenLayers and GeoServer. There are also lot of existing applications, take a look here: gis.stackexchange.com/questions/43477/… |