The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
29 views

How to make filter that can find users by location of each other in miles or kilometers?

On a lot of dating sites like this one: http://www.pof.com/basicsearch.aspx users can search each other by proximity, can this be done with Drupal? Like searching for users within X kilometers of ...
0
votes
0answers
16 views

A map as a views filter

I have a view that has nodes with countries as a field. I currently have a drop-down list that filters out the nodes for a particular country. I now want to upgrade that dropdown list and use a map ...
0
votes
0answers
12 views

Identify intersecting nodes (points within polygons)

I have two content types - assets and regions. Assets have point locations. Regions have a polygon 'location'. As assets are added I would like to assign tags to these assets based upon the region it ...
0
votes
0answers
66 views

How to implement autocomplete for address field using google places/maps api?

When using Eventbrite event creating form, i noticed their address field has an autocomplete feature powered by Google. Is there a Drupal module that does something similar ? Demo link on ...
0
votes
0answers
13 views

What module creates the class names “views-field-field-locality” or “wm-locality”?

Does anybody know what module generates the class names "views-field-field-locality" or "wm-locality"? (shure, views is generating it, but what is this 'locality' or this 'WM'?)
1
vote
1answer
69 views

Redirect visitor based upon geolocation

On a Drupal website I want to redirect the visitor to a landing page based on the users location. I need this to be more specific than just the users country, but rather I need the province inside the ...
1
vote
1answer
59 views

Reverse geocoding (country) from geofield with coordinates

is there a quick way to do a reverse geocoding from a geofield field containing geographical coordinates? I just need the country name, so I wonder if there is some service with more allowance than ...
1
vote
0answers
32 views

Device Geolocation doesn't work using multiple subdomains

I am using the module Smart IP and in particular its sub module Device Geolocation to detect the users position. The latter uses the method navigator.geolocation.getCurrentPosition(success, error) ...
0
votes
0answers
33 views

Geofield Display Format Data Options (Using Bounding Box)

I am using Geofield to store point and polygon features. Input works fine with all the different widgets I have tried. Display formats (GeoJSON, WKT, KML) with Data Options "Use full geometry" and ...
0
votes
0answers
32 views

Geolocation map broken/not displaying properly

Having issues with the geolocation map. For some reason it is breaking the map apart by creating grey lines on the map. Doesn't matter if I zoom in or out, the effect is the same. Any ideas why this ...
0
votes
1answer
59 views

How do I write to location field in an Entity?

I am having a custom entity called Micronews which has a bundle microupdate created in it. I am able to write entity to db for all fields but I am not able to figure out how to write location (using ...
1
vote
1answer
58 views

Distance to shop long/lat

I want to create a filter where companies are able to find users within eg. 10 kilometers using users added long/lat and the company's long/lat they have added. I am using geolocation but how am I ...
0
votes
1answer
48 views

Hiding nodes based on geographical location

I am setting up a ecommerce site for a client using drupal and ubercart. They have a number of products on the site that are not available in certain countries. We have discussed solutions using ...
3
votes
3answers
193 views

Add a map for each node in a view

I am building a restaurant application which would have a search functionality, and when somebody searches of restaurants for a zip code, it would return the data. The data would be the name of the ...
3
votes
1answer
161 views

Most appropriate simple IP direct for Drupal 7

Having looked at the descriptions provided for the following modules ip2cc ip2country geoip smart_ip I'm having trouble identifying which module would be the simple solution to my scenario. I ...
0
votes
2answers
199 views

How to output Get Locations coordinates as a separate field?

I have Get Locations module enabled, and I would like to output the coordinates of a given location as a separate field (longitude, latitude) when displaying a given node. Somehow like this: GPS: 45° ...
0
votes
1answer
69 views

Creating posts linked to map

I want to create a map where on clicking on a certain location ,a user can find all the content/nodes/posts related to that location. ( Something like http://42floors.com/ ) Is it possible to build ...
0
votes
1answer
106 views

Custom php in rules how to check users' geolocation lat lon field and return only users in certain area

I have some custom php, sending privatemsgs to users who have some term_reference field terms that match node term_reference field terms. I need to add into this so that it only contacts users who are ...
0
votes
1answer
105 views

Display a view of geolocation fields with lat lon on a google (or equiv) map

I have a geolocation module installed with a field that geolocates and gives a lat lon value. Then I want to use a view of these values to show them in google maps or equivalent. If there is a quick ...
0
votes
0answers
151 views

Node field that allows user to drop a pin on a map or search for an address

Hi I would like to allow a user who posts a new content type of project to enter a location ideally by searching for an address and / or dropping a pin on a mapping. I am using drupal 7. I have been ...
5
votes
1answer
981 views

Mark a location on a map (Google Maps/OpenLayers) on a node creation or edit page - but with which module?

I have a custom content type, and I would like my users to mark a location on a Google Maps/OpenLayers map, save these coordinates, and on the frontend, show the location's map and the GPS ...
0
votes
0answers
68 views

openlayers_proximity module does not provide contextual search in views

I need a contextual filter in a view to search for nodes in the proximity of a city given in the url. I used the openlayer locator feature (http://drupal.org/project/ol_locator) to get started and it ...
0
votes
1answer
110 views

Convert Haversine mysql query to D7 code [closed]

I'm stuck at converting the haversine query to drupal D7 code. Basically I am writing a custom block module that should display the closest city to the entry nodes geo points. Cities are different ...
0
votes
1answer
399 views

How can I scrape data from the web into drupal?

I want to scrap location data from google. So for example; If I search for "Restaurants in Miami". I get over 14K results. I reviewed; How to import Nodes and Node Location data using Feeds module?. ...
2
votes
2answers
674 views

using drupal sessions during hook_boot

When a user calls the front page of our site we want to check the country from which the user is surfing and redirect the user directly to the country specific front page. We chose to use the ...
1
vote
1answer
369 views

Cloudflare country code for language negotiation

Cloudflare.com provides CF_IPCountry http header. This can be retrieved in php with $country_code = $_SERVER["HTTP_CF_IPCOUNTRY"]; as they say. It'll return XX if the country cannot be determined. ...