This client uses the XML capabilities of PHP and standard web application
-programming techniques to present an HTML/JavaScript view of
-OpenGIS Web Map Server (WMS) internet
-mapping servers.
-
-
Test Servers
-
-
Our goal is to "do the right thing" with all these servers. It will be
-a long hard road.
Properly handle heirarchical <Layer> objects and provide a
-tree-based layer list.
-
Enable and disable layer entries appropriately based on the
-<ScaleHint> provided for <Layer>s.
-
Continue to test against new and unknown WMS servers to obtain maximum
-compatibility.
-
Aesthetic improvements to the interface. Graphical mode selectors,
-rollovers, highlighting. "Themability" of the interface.
-
-
-
-
diff --git a/classesphp/lews/wms.php b/classesphp/lews/wms.php
deleted file mode 100644
index c8f09cf..0000000
--- a/classesphp/lews/wms.php
+++ /dev/null
@@ -1,129 +0,0 @@
-
-
-WMS
-
-
-
-
-
-
-
-
diff --git a/classesphp/lews/wms_layerframe.php b/classesphp/lews/wms_layerframe.php
deleted file mode 100644
index fffe22e..0000000
--- a/classesphp/lews/wms_layerframe.php
+++ /dev/null
@@ -1,99 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-# -------------------------------------------------------------
-# Import the WMS support functions for PHP. These are mostly responsible for
-# handling the XML capabilities request, and creating appropriate JavaScript
-# objects from that data.8
-#
-# PHP functions are also used to generate the query result page.
-#
-include("wms_functions.php");
-
-# -------------------------------------------------------------
-# Test that there is a wms service defined before proceding.
-#
-if ( ! $onlineresource ) {
- # No WMS service provided.
- wms_fatal("No 'onlineresource' defined.");
- }
-
-$wms_service_request = $onlineresource . "REQUEST=GetCapabilities&SERVICE=WMS";
-
-
-# -------------------------------------------------------------
-# Test that the capabilites file has successfully downloaded.
-#
-if( !($wms_capabilities = file($wms_service_request)) ) {
- # Cannot download the capabilities file.
- wms_fatal("Unable to retrieve capabilities file '$wms_service_request'.");
-}
-
-$wms_capabilities = implode("",$wms_capabilities);
-
-# -------------------------------------------------------------
-# Test that the capabilites file has successfully parsed.
-#
-if( !($dom = xmldoc($wms_capabilities)) ) {
- # Cannot parse the capabilities file.
- wms_fatal("Unable to parse capabilities file from '$onlineresource'.
" . xml2html($wms_capabilities));
-}
-
-# -------------------------------------------------------------
-# Create the JavaScript map object and layer objects.
-# Set the layer objects to have a valid reference to the map object.
-#
-#print xml2html($wms_capabilities); exit;
-print "