[GIS] Building Floor Plan map using OpenLayers and json

ext-jsgeoextgeojsonhtml5openlayers-2

How to show map of building floor plan using OpenLayers and json.
moreover, i want to know that how to change features dynamically with zoom based from json files. Let's take example,

Initial the polygon of building feature shows then,
second zoom, detailing map with more features like sitting arragement with desk and chairs, then
third zoom, more detailing with attributes of each sitting arragement.

Above mention zoom level have different type of symbology of each.

How to make this, pl. help me on this..

Regards
GIS User

Best Answer

For the OpenLayers.Format.GeoJSON feature collection use an OpenLayers.Layer.Vector instance. Examples from the OpenLayers Examples Gallery:

Use a zoom based strategy for displaying your layers. This can be achieved using the minScale and maxScale properties in the options object passed to an OpenLayers.Layer.Vector instance.

Related Question