The jquery tag has no wiki summary.
2
votes
1answer
53 views
How to highlight feature clicked as row in table using OpenLayers+jquery?
I am a Masters student from Sweden. I am doing my Masters thesis on Internet mapping. In my project I am trying to display research data from my department on Google maps. I am using OpenLayers java ...
1
vote
1answer
44 views
jquery communication with arcgis services
I am working with the ArcGIS JavaScript API for my application. My app users are stored in a table published in a map service. Whenever a user wants to connect to the app, he needs to provide a ...
0
votes
0answers
77 views
OpenLayers map not showing on my JQuery Mobile site
I have an OpenLayers map which is suppose to be made using variables from a PHP array once a button is clicked on my JQuery Mobile site. For some reason however, it is not showing on my page when I ...
2
votes
1answer
133 views
call child div function from parent (not using window.opener)
This is a a Javascript/JQuery question that is directly related to the ArcGIS Javascript API...
I have a map div created using a 'data' tag in HTML, which becomes visible on a button click.
(I'll ...
0
votes
1answer
132 views
Heatmap.js is not displaying on openlayer
I tried to follow the example on the heatmap.js but for some reason it is not displaying the heat map layer, and the layer control is not working. Maybe I am missing something stupid. Can someone ...
2
votes
1answer
92 views
Can arcserver be used to populate jquery autocomplete?
I would like to set up autocomplete on a text box using jquery autocomplete with data from an arcserver service. I'm wondering if this is possible and if so how i would implement it. I'm using the ...
1
vote
1answer
400 views
OpenLayers + GEOExt + extjs. VS OpenLayers+jquery
Could some one maybe tell me if there are any real benefits of using OpenLayers + GEOExt + extjs. as oppose to using only OpenLayers and maybe jquery for client side webgis apps?
Edit: thanks for ...
1
vote
1answer
91 views
passing geocode results object to another file
I'm using a geocoding plugin (Leafet.GeoSearch) on a map and I'd like the results, being the LatLng point coordinates, etc available as a parameter for GeoServer cql filtered calls.
It doesn't seem ...
0
votes
1answer
130 views
How to read/write a/from a file in javascript with prototype.js/jQuery.twFile support OR anyotherway
I want to write my data into a file from OpenLayers, I have gone through Prototype.js and jQuery.twFile.js or anyother way to write into a file.
0
votes
0answers
103 views
jQuery Templates with Leaflet
Is it possible to render a template like jsRender to a div created with Leaflet's .create method as follows?
info.onAdd = function (map) {
this._div = L.DomUtil.create('div', 'info');
...
3
votes
1answer
450 views
Click link inside Leaflet Popup and do javascript
I have a leaflet map up and running. It overlays a series of polygons (via GeoJSON) on the map and attaches popups to each polygon. Each of the popups display information about that polygon.
I'd ...
5
votes
2answers
2k views
Adding/Removing Leaflet GeoJSON layers
I'm trying to show different GeoJSON layers at different zoom layers using the Leaflet API. I can load and display all three layers at once (though I don't actually want them all to show at once). I ...
2
votes
0answers
51 views
Features disapearing
When I add a polygon feature it shows on the map. When I add another one the first one disappears. The code for adding is below:
$.postJSON('@Url.Action("GetLayers")', { "planId": planId },
...
0
votes
1answer
1k views
Google Map - display specific markers popup using a list of markers
I have the following code:
<script type="text/javascript">
window.onload = function() {
// Creating a new map
var map = new google.maps.Map(document.getElementById("map"), {
...
0
votes
1answer
282 views
Openlayers loop through json array and output result with as javascript
Connection.php file which stored database connection code with json:
<?php
$username = "root";
$password = "";
$database = "roadmap";
$url = "localhost";
$con = mysql_connect($url, $username , ...