Questions tagged [mapstraction]

Mapstraction is a common API that abstracts various JavaScript mapping APIs.

Mapstraction is a library that provides a common API for various JavaScript mapping APIs to enable switching from one to another as smoothly as possible. Developers can code their applications once and then easily switch mapping provider based on project needs, terms and conditions, and new functionality.

27 questions
0
votes
2 answers

how to delay marker loading openlayers map with mapstraction

I have a page with displays 10 markers in an openlayers map used via mapstraction. I want to load map first then marker one by one say after every second, I tried using window.setTimeout() it loads the map and loads only first marker after that it…
Ravi Mishra
  • 181
  • 1
  • 3
  • 8
0
votes
1 answer

Geoserver with Mapstraction

Do someone know how to use a custom hosted Geoserver's Tile Layers or WMS layers to be laid on Mapstraction as a base layer? MapStraction has base layer plugins for google, yahoo, microsoft, openlayers etc., But unfortunately it lacks a plugin for…
Muthu
  • 2,675
  • 4
  • 28
  • 34
0
votes
1 answer

Can we use Mapstaction API with Google Map API v3?

The demo on their site is based on Google Map API version 2. So, is Google Map API version 3 also supported. How can I use that to switch from version 2 to version 3. Thanks.
Tahir
  • 3,344
  • 14
  • 51
  • 69
0
votes
1 answer

Integrate ESRI data with Mapstraction

Is it possible to integrate data from ESRI with Mapstraction. Do anyone got any idea in this area.
saknet
  • 377
  • 3
  • 5
  • 14
0
votes
2 answers

How do I download the javascript library for mapstraction v2?

I am setting up a map on a drupal website using the mapstraction module. I am planning to use the 6.x-2.x-dev development branch of mapstraction because I need some of its additional functionality. In the instructions for installing the module, it…
Rachel
  • 3
  • 1
0
votes
1 answer

Using Mapstraction and Google maps API - map not showing

I'm trying to upgrade a RoR app that uses mapstraction and google maps api, but I can't seem to get the map to show...I already posted a question with the code from that app here but haven't got an answer yet: Upgrading google maps api with…
camillavk
  • 521
  • 5
  • 20
0
votes
1 answer

Upgrading google maps api with mapstraction in Rails 3

I'm trying to upgrade an app into Rails 3. The app requires a map that can be edited and it has been using google maps and mapstraction. When I upgraded to rails 3 the map stopped showing up and I figured that's because it needed to be updated from…
camillavk
  • 521
  • 5
  • 20
0
votes
1 answer

Is Mapstraction still the way to go

I was starting to write a multi-Map JS library, but I see that Mapstraction does that exactly.. I really would like to use Maptraction but it looks a little old (The commit's on GITHUB) (Not a issue if it is still "supported"), also The tutorial…
Kim Ras
  • 972
  • 8
  • 14
0
votes
1 answer

Mapstraction and JSON Google map style

I am using mapstraction v2. When selecting Google as a provider, I need to stylize a google map v3. I have used google's nice 'styled maps wizard' tool that produces the JSON object to pass to the style property of the google.maps.MapOptions object.…
0
votes
1 answer

Mapstraction Precompilation Error in Rails 3.1

I have a Rails 3.1 application with assets set up to pre-compile in production (Heroku, in this case). This includes jQuery, jQueryUI and Mapstraction. Running heroku logs, however, reveals that Mapstraction, a mapping JS library, may not be…
huertanix
  • 761
  • 1
  • 9
  • 22
0
votes
1 answer

Movable Marker in Mapstraction using Google Maps v3

I am trying to place a marker that can be moved (movable marker) using Mapstraction Google Maps v3. But I cannot find the right settings. I can place a static marker. But cannot find the configuration for a movable marker. Any one has any thoughts…
Rohitesh
  • 967
  • 2
  • 14
  • 29
-1
votes
1 answer

How can I change a value of an id attribute to its equivalent description in DTO class using mapstruct

I have a 1 entity class PersonEntity and corresponding to that I have Dto class @Entity(value="person") class PersonEntity{ String name; String id; } **DTO** class PersonDto{ String name; String id; String desc; (This is a lookup from a map…
1
2