Polygon draw

Component type

module

Categories

Maintenance status

Development status

Component created

Component changed

This is a sandbox for Polygon draw module which allow user to implement facet search on maps using Openlayers module in drupal 7. By using this module user can draw polygon on map and narrow down the search in content.

Currently what I have upto:-

1. User can draw Polygon on map and narrow down the search in facet blocks.
2. Above functionality is currently based on specific unique id. If you go through the code I am sure you can use this module in your project with some modification.

geoip_lang

Component type

module

Maintenance status

Development status

Component created

Component changed

This module allows you to use free GeoIP Lite database by MaxMind to redirecting users based on their country or location for an i18n site
For using this module geoip should be insatlled on your webserver .

$ sudo -s
# apt-get install build-essential php5-dev php5-cli libgeoip-dev libgeoip1 php-pear
# pecl install geoip

Next

Mappy

Component type

module

Maintenance status

Development status

Downloads

8107

Component created

Component changed

Mappy - a module that allows easy insertion of internet maps to the site.

HTML-tag insert example:
<mappy:google address="Russia, Perm" zoom="17" width="600" height="300"></mappy:google>

example filter

Currently supported Yandex.Maps and Google.Maps.

Drupal 8

Mappy for Drupal 8 is already done and works as stable for Drupal 7. Tested on Drupal 8 (alpha 15).

webform_postcodeanywhere

Component type

module

Categories

Maintenance status

Development status

Component created

Component changed

This module use the Postcode-Anywhere service to provide UK addresses within a webform.

This works by arranging textfields within a fieldset.
The fieldset is saved as usual and then edited again in order to set it as a Postcode-Anywhere fieldset.
Each textfield is set as a line for addresses I:E Postcode, AddressLine#1, AddressLine#2, Town etc. The postcode-anywhere settings will only be available for the textfields when the parent fieldset has be configured as a Postcode-Anywhere fieldset.

Openlayers ranged heatmaps

Component type

module

Maintenance status

Development status

Component created

Component changed

This module extends Openlayers to provide the capacity for "Ranged Heatmaps". A Ranged heatmap is a map where the color of a feature is set by it falling into a range of values. A traditional heatmap is a smooth graduation of colors, a ranged heatmap can have all sorts of color combinations.

For example, a traditional heatmap might increase saturation based on the value of "population". A ranged heatmap could color regions with population 0-100 in Red, regions with population 101-345 in Blue, and population over 346 as Yellow.

Leaflet Popup Outside

Component type

module

Maintenance status

Development status

Downloads

2125

Component created

Component changed

Want a quick and simple way to make your Leaflet Maps Project show the info bubble window not in a Popup (default Leaflet behavior) but in an external div? This will do it.

Leaflet Popup Outside Usage

  1. Build Leaflet map
  2. Enable this module

Just added: "active" css class on the leaflet marker image element. I'm just sayin'.

GMap Image

Component type

module

Categories

Maintenance status

Development status

Component created

Component changed

With this module you can embed static map images generated by Google's Static Maps API

<?php
print theme('gmap_image', array(
  'zoom' => 14,
  'location' => 'Árpád út 51-53, Budapest, Hungary',
  'size' => array(
    'width' => 400,
    'height' => 300,
  ),
  'marker' => 'color:red',
));
?>