Skip to content

Latest commit

 

History

History
64 lines (47 loc) · 1.69 KB

index.rst

File metadata and controls

64 lines (47 loc) · 1.69 KB

Web Mapping Made Easy

The Heron Mapping Client (MC) facilitates the creation of browser-based web mapping applications with the GeoExt JavaScript toolkit.

GeoExt is a powerful toolkit that combines the web mapping library OpenLayers with the user interface savvy of Ext JS to help build powerful desktop style GIS apps on the web with JavaScript. The Heron MC leverages these frameworks by providing high-level components and a convention to quickly assemble applications merely through configuration ("Look ma no programming").

Using Heron

See Heron in action.

execute

Heron.layout = {
   xtype: 'window',
   title: "Hello Heron",
   height: 280, width: 450,

   items: [
    {
       xtype: "gx_mappanel",
       layers: [new OpenLayers.Layer.WMS("World",
                "http://www2.demis.nl/wms/wms.ashx?",
                {layers: "BlueMarble"})],
       zoom: 1
    }
   ]
};

This is a minimal Heron application. You can see that this app is completely defined through a configuration object starting with Heron.layout. Learn more about using Heron in your application by reading the documentation <docs>.

Heron is Free Source

Heron is available under the GNU GPL v3 license.

docs tutorials/index primers/index examples gallery developer/index lib/index downloads