Home
last modified time | relevance | path

Searched refs:OpenLayers (Results 1 – 25 of 182) sorted by relevance

12345678

/dports/graphics/geoserver/geoserver-2.20.1/data_dir/www/openlayers/
H A Dol-demo.cfg2 OpenLayers/SingleFile.js
3 OpenLayers.js
4 OpenLayers/BaseTypes.js
5 OpenLayers/BaseTypes/Class.js
6 OpenLayers/Util.js
12 OpenLayers/Ajax.js
13 OpenLayers/Console.js
23 OpenLayers/Feature/WFS.js
24 OpenLayers/Format/WFS.js
39 OpenLayers/Layer/WMS.js
[all …]
/dports/astro/routino/routino-3.3.3/web/www/openlayers2/
H A Droutino.cfg5 OpenLayers/SingleFile.js
6 OpenLayers.js
7 OpenLayers/BaseTypes.js
9 OpenLayers/Util.js
24 OpenLayers/Format/GPX.js
30 OpenLayers/Layer/TMS.js
32 OpenLayers/Map.js
33 OpenLayers/Marker/Box.js
34 OpenLayers/Projection.js
42 OpenLayers/Rule.js
[all …]
H A Dinstall.sh7 wget http://openlayers.org/download/OpenLayers-$version.tar.gz
11 tar -xzf OpenLayers-$version.tar.gz
15 (cd OpenLayers-$version/build && python build.py ../../routino.cfg && cp OpenLayers.js ..)
19 cp -p OpenLayers-$version/OpenLayers.js .
20 cp -pr OpenLayers-$version/img .
21 cp -pr OpenLayers-$version/theme .
25 rm -rf OpenLayers-$version
/dports/www/tikiwiki/tiki-21.2/lib/openlayers/
H A Dreadme.md1 # OpenLayers chapter
3 Copyright (c) 2005-2012 OpenLayers Contributors. See authors.txt for
7 on the web. OpenLayers is made available under a BSD-license.
10 ## Getting OpenLayers
14 ## Installing OpenLayers
16 You can use OpenLayers as-is by copying build/OpenLayers.js and the
27 $ cp ~/openlayers/OpenLayers.js ./
45 ## Alternate OpenLayers Versions in this Release
52 2. OpenLayers.mobile.js - a mobile focused build --> Includes a subset of the OpenLayers
62 ## Using OpenLayers in Your Own Website
[all …]
/dports/www/gpx2map/gpx2map-0.2/
H A Dgpx2map.osm.template20 var map = new OpenLayers.Map ("map", {
22 new OpenLayers.Control.Navigation(),
23 new OpenLayers.Control.PanZoomBar(),
24 new OpenLayers.Control.Permalink(),
25 new OpenLayers.Control.OverviewMap() ],
28 projection: new OpenLayers.Projection("EPSG:900913"),
34 layerTilesAtHome = new OpenLayers.Layer.OSM();
48 var line = new OpenLayers.Geometry.LineString(points);
70 var size = new OpenLayers.Size(20,34);
99 new OpenLayers.Size(null),
[all …]
/dports/www/ikiwiki/ikiwiki-3.20200202.3/doc/bugs/
H A Dosm_plugin_fails_to_display_map_with_javascript_error.mdwn7 OpenLayers.js (line 476, col 64)
9 ReferenceError: OpenLayers is not defined
14OpenLayers made a backwards-incompatible change... At [reseaulibre](http://wiki.reseaulibre.ca/) i…
16 > osm_openlayers_url: http://wiki.reseaulibre.ca/OpenLayers-2.12/OpenLayers.js
20 > osm_openlayers_url: http://openlayers.org/api/2.12/OpenLayers.js
/dports/www/ilias6/ILIAS-6.14/libs/bower/bower_components/openlayers/doc/tutorials/
H A Dclosure.md10 The OpenLayers code uses the Closure Library, and it is compiled with the
11 Closure Compiler. Using OpenLayers in an application does not require using
38 with the OpenLayers code has a number of advantages.
40 First of all, it allows you to only "pay" for the OpenLayers code your
45 Also, compiling the application and OpenLayers together allows using
46 OpenLayers functions and objects that are not part of the official OpenLayers
49 that are not in OpenLayers anymore.
77 Now install OpenLayers using:
106 ## Create an OpenLayers map
146 OpenLayers map as you would do in any OpenLayers application.
[all …]
H A Dcustom-builds.md8 OpenLayers is a big library providing a lot of functionality. So it is unlikely that an application…
12 This particular tutorial explains how to create custom builds of OpenLayers.
18 ## Download OpenLayers
20 Obviously, creating a custom build requires the OpenLayers source and specific build scripts.
28 Download the OpenLayers distribution using NPM:
36 You should now have everything you need to create custom builds of OpenLayers!
98 Note that this JavaScript code corresponds to OpenLayers's [`simple`](https://openlayers.org/en/mas…
100 You are now ready to create your first OpenLayers build. Use the following command to create the bu…
119 <title>OpenLayers example</title>
153 Closure allows you to define constants that can be set at compile time. The OpenLayers code defines…
[all …]
H A Dindex.hbs8 * [Introduction to OpenLayers](introduction.html)
11 * [Bundle Application and OpenLayers using Browserify](browserify.html)
12 * [Compile Application and OpenLayers together](closure.html)
H A Dbrowserify.md8 …setup your own code with dependency management together with external dependencies like OpenLayers.
10 … might be interested in a more modern one (ES2015) [using Webpack with OpenLayers](https://gist.gi…
16 Add OpenLayers as dependency to your application with `npm install --save ol`.
23 We will be using `cssify` to include the css definitions required by OpenLayers in our bundle. `wat…
57 <title>Using Browserify with OpenLayers</title>
87 …r application code and all dependencies used in your application. From OpenLayers, it only contain…
H A Dconcepts.hbs9 The core component of OpenLayers is the map (`ol.Map`). It is rendered to a `target` container (e.g…
34 To get remote data for a layer, OpenLayers uses `ol.source.Source` subclasses. These are available …
41 A layer is a visual representation of data from a `source`. OpenLayers has three basic types of lay…
H A Dintroduction.md9 With version 3, the OpenLayers web mapping library was fundamentally redesigned. The widely used ve…
16 OpenLayers was written in a way so it can be compiled with [__Closure Compiler__](https://developer…
27 OpenLayers runs on all modern browsers that support [HTML5](https://html.spec.whatwg.org/multipage/…
42 OpenLayers follows the convention that the names of private properties and methods, that is, those …
/dports/www/ilias6/ILIAS-6.14/libs/bower/bower_components/openlayers/doc/
H A Dfaq.md17 * [What projection is OpenLayers using?](#what-projection-is-openlayers-using-)
29 ## What projection is OpenLayers using?
31 Every map that you'll create with OpenLayers will have a view, and every view
40 Back to the original question: OpenLayers is capable of dealing with most
106 As the default projection in OpenLayers is Web Mercator (see above), the
132 OpenLayers has some helpful utility methods to assist you:
158 // assuming that OpenLayers knows about EPSG:21781, see above
171 OpenLayers is designed to handle all projections, but the default view is in
339 ## How do I create a custom build of OpenLayers?
348 OpenLayers is built on top of the [Google Closure JavaScript
[all …]
H A Dindex.hbs8 If you're eager to get your first OpenLayers map on a page, dive into the [quick start](quickstart.…
10 For a more in-depth overview of OpenLayers core concepts, check out the [tutorials](tutorials/).
12 Make sure to also check out the [OpenLayers workshop](/workshop/).
18 …](faq.html) and our answers. Common problems that may arise when using OpenLayers are explained th…
H A Dquickstart.hbs24 <title>OpenLayers example</title>
51 1. Include OpenLayers
55 ### Include OpenLayers
63 …forms like Internet Explorer or Android 4.x, another script needs to be included before OpenLayers:
106 The following line creates an OpenLayers `Map` object. Just by itself, this does nothing since ther…
128 Layers in OpenLayers are defined with a type (Image, Tile or Vector) which contains a source. The s…
/dports/www/tikiwiki/tiki-21.2/templates/modules/
H A Dmod-map_edit_features.tpl60 var format = new OpenLayers.Format.GeoJSON;
65 var format = new OpenLayers.Format.GeoJSON;
86 modify = new OpenLayers.Control.ModifyFeature(vlayer, {
87 mode: OpenLayers.Control.ModifyFeature.DRAG | OpenLayers.Control.ModifyFeature.RESHAPE,
89 toolbar = new OpenLayers.Control.EditingToolbar(vlayer);
/dports/www/ilias6/ILIAS-6.14/libs/bower/bower_components/openlayers/
H A DREADME.md1 # OpenLayers chapter
8OpenLayers](https://openlayers.org/) is a high-performance, feature-packed library for creating in…
12 Use one of the following methods to use OpenLayers in your project:
25 OpenLayers runs on all modern browsers that support [HTML5](https://html.spec.whatwg.org/multipage/…
H A DCONTRIBUTING.md1 # Contributing to OpenLayers
3 Thanks for your interest in contributing to OpenLayers.
29 This page describes what you need to know to contribute code to OpenLayers as a developer.
48 * Follow OpenLayers's coding style.
80 ### Follow OpenLayers's coding style
82 OpenLayers follows [Google's JavaScript Style
91 style of the existing OpenLayers code, which includes:
117 code follows the OpenLayers style and does not break tests or examples. You
202 Your OpenLayers source tree need not be under the Cygwin root.
204 However, keep the path to the OpenLayers files short otherwise you may see
H A DDEVELOPING.md6 [forking](https://github.com/openlayers/openlayers/fork) the OpenLayers repository.
36 As an OpenLayers developer you will use `make` to run build targets defined in the
54 Other targets include `apidoc` and `ci`. The latter is the target used on Travis CI. See OpenLayers
87 Append `?mode=raw` to make the example work in full debug mode. In raw mode the OpenLayers and Clos…
129 Short story: the OpenLayers examples should not use the `goog` namespace, except
132 Longer story: we want that the OpenLayers examples work in multiple modes, with the
134 export), and compiled together with the OpenLayers library.
H A DLICENSE.md1 Copyright 2005-present OpenLayers Contributors. All rights reserved.
26 either expressed or implied, of OpenLayers Contributors.
/dports/databases/pg_tileserv/pg_tileserv-1.0.8/hugo/content/examples/
H A Dexample-openlayers.md2 title: "OpenLayers Example"
10 ![OpenLayers map preview](/example-openlayers.png)
/dports/www/ilias6/ILIAS-6.14/libs/bower/bower_components/openlayers/config/jsdoc/api/template/tmpl/
H A Dlayout.tmpl8 <title>OpenLayers v<?js= version ?> API - <?js= title ?></title>
25 <a class="brand" href="/"><img src="logo-70x70.png"> OpenLayers</a>
42 …This documentation is for OpenLayers v<span id="package-version"><?js= version ?></span>. The <a i…
/dports/www/ilias6/ILIAS-6.14/libs/bower/bower_components/openlayers/.github/
H A DISSUE_TEMPLATE.md1 Thank you for your interest in making OpenLayers better!
7 - [ ] I have verified that the issue is present in the latest version of OpenLayers (see 'LATEST' o…
/dports/astro/gpsd/gpsd-3.20/
H A Dgpsd.php.in595 <script src="http://openlayers.org/api/OpenLayers.js" />
600 var map = new OpenLayers.Map("map", {
602 new OpenLayers.Control.Navigation(),
603 new OpenLayers.Control.PanZoomBar(),
604 new OpenLayers.Control.ScaleLine(),
605 new OpenLayers.Control.LayerSwitcher()
608 var layer = new OpenLayers.Layer.OSM("Open Street Map");
611 var center = new OpenLayers.LonLat({$GLOBALS['lon']}, {$GLOBALS['lat']})
612 .transform(new OpenLayers.Projection("EPSG:4326"), map.getProjectionObject());
615 var markers = new OpenLayers.Layer.Markers("Markers");
[all …]
/dports/textproc/kibana6/kibana-6.8.16-darwin-x86_64/node_modules/@mapbox/geojson-area/
H A DLICENSE1 Copyright 2005-2013 OpenLayers Contributors. All rights reserved. See
27 either expressed or implied, of OpenLayers Contributors.

12345678