groundtruth/PoziMobile

View on GitHub
js/layers/VicmapClassic.js

Summary

Maintainability
A
0 mins
Test Coverage
define(['openlayers'], function (OpenLayers) {
  return function () {
    this.layer = OpenLayers.Layer.WMS.doNew('Vicmap Classic',
      [
        'https://mobileproxy.pozi.com/http://basemap1.pozi.com/geoserver/wms'
      ],
      {
        layers: 'VICMAP_CLASSIC:VicmapClassic',
        format: 'image/png8',
        tiled: true,
        authkey: 'openlayers2noauth'
      },
      {
        transitionEffect: 'resize'
      }
    )
  }
})