Difference between revisions of "Configuring the Mapping"

From ARK
Jump to: navigation, search
 
Line 1: Line 1:
 
This will be written up better soon for now I'm using it to help me remember stuff for lter.
 
This will be written up better soon for now I'm using it to help me remember stuff for lter.
  
Map View/View as Map
+
==Map View/View as Map (data_view.php)==
  
 
all names of layers that are queryable need to be prefaced by the mod and an underscore... i.e cxt_pl or sfi_sf. This is vital for the templating to know how to get the mod.
 
all names of layers that are queryable need to be prefaced by the mod and an underscore... i.e cxt_pl or sfi_sf. This is vital for the templating to know how to get the mod.
  
 +
The template document need to be set up per ARK - unfortunately the querying engine can only read straight html - so you need to hardcode in your web-address into the object.
 +
 +
 +
Make sure you have this in your stylesheet
 +
 +
  /* MAPPING STYLES */
 +
 +
  div.smallmap {
 +
  background:transparent url(ark/skins/arkologik/images/loading.gif) no-repeat scroll center;
 +
  height:200px;
 +
  width:100%;
 +
  }
 +
 +
  div.mapview {
 +
  background:transparent url(ark/skins/arkologik/images/loading.gif) no-repeat scroll center;
 +
  height:100%;
 +
  width:100%;
 +
  }
  
 
[[Category: Administrator]]
 
[[Category: Administrator]]

Revision as of 16:05, 6 July 2008

This will be written up better soon for now I'm using it to help me remember stuff for lter.

Map View/View as Map (data_view.php)

all names of layers that are queryable need to be prefaced by the mod and an underscore... i.e cxt_pl or sfi_sf. This is vital for the templating to know how to get the mod.

The template document need to be set up per ARK - unfortunately the querying engine can only read straight html - so you need to hardcode in your web-address into the object.


Make sure you have this in your stylesheet

 /* MAPPING STYLES */
 div.smallmap {
 background:transparent url(ark/skins/arkologik/images/loading.gif) no-repeat scroll center;
 height:200px;
 width:100%;
 }
 div.mapview {
 background:transparent url(ark/skins/arkologik/images/loading.gif) no-repeat scroll center;
 height:100%;
 width:100%;
 }