Skip to content

Instantly share code, notes, and snippets.

View filippov70's full-sized avatar

Владислав filippov70

View GitHub Profile
@stepankuzmin
stepankuzmin / feature-grid.js
Created November 23, 2011 10:28
Mapping with OpenLayers and GeoExt
OpenLayers.IMAGE_RELOAD_ATTEMPTS = 5; // How many times should we try to reload an image before giving up?
OpenLayers.ImgPath = "http://js.mapbox.com/theme/dark/";
var mapPanel, store, gridPanel, mainPanel;
Ext.onReady(function() {
var map = new OpenLayers.Map('', {
controls: [],
projection: new OpenLayers.Projection("EPSG:900913"),
units: "m",
@jacobandresen
jacobandresen / mod_proxy geoserver
Created June 2, 2011 15:53
mod_proxy geoserver
ProxyRequests Off
<Proxy *>
Order deny,allow
Allow from all
</Proxy>
ProxyPass /geoserver http://localhost:8080/geoserver
ProxyPreserveHost On
ProxyStatus On