Skip to content
Snippets Groups Projects
  1. Feb 24, 2011
  2. Feb 11, 2011
  3. Feb 01, 2011
  4. Jan 27, 2011
  5. Jan 26, 2011
  6. Jan 13, 2011
  7. Jan 09, 2011
  8. Nov 30, 2010
  9. Nov 05, 2010
  10. Nov 04, 2010
  11. Sep 30, 2010
  12. Sep 15, 2010
  13. Sep 09, 2010
  14. Jul 06, 2010
  15. Jul 04, 2010
  16. Jul 02, 2010
  17. Jun 13, 2010
  18. Jun 08, 2010
  19. Apr 29, 2010
  20. Apr 08, 2010
    • Reuben Turk's avatar
      #679804 by srobert72 (some modifications by myself) - adds: · a9853550
      Reuben Turk authored
      * Add Google Bar to search on map
      * Add option for a marker tooltip field on gmap views
      * Add option to highlight markers on mouse rollover event
      * Add option to center Gmap on marker of node passed as argument in view
      * Add option to highlight markers of node passed as argument in view
      a9853550
  21. Apr 01, 2010
  22. Jan 23, 2010
  23. Jan 09, 2010
  24. Dec 15, 2009
  25. Dec 11, 2009
  26. Dec 01, 2009
    • Brandon Bergren's avatar
      From [#452316]: · 1321ce2a
      Brandon Bergren authored
      Stop confusing the marker system by blindly wrapping marker.text in a div, even
      if it didn't exist.
      1321ce2a
    • Brandon Bergren's avatar
      · c92341bf
      Brandon Bergren authored
      Add a way to bind controls that we aren't able to set the id/classes on from the Drupal side.
      
      This lets us work around the fact that gmap_widget_setup() completely fails to work on CCK fields.
      
      Example:
      <code>
        $remap = array(
          'edit-field-latitude-0-value' => array('classes' => array('gmap-locpick_latitude'), 'id' => 'gmap-loc0-locpick_latitude0'),
          'edit-field-longitude-0-value' => array('classes' => array('gmap-locpick_longitude'), 'id' => 'gmap-loc0-locpick_longitude0'),
          'edit-field-address-0-value' => array('classes' => array('gmap-locpick_address'), 'id' => 'gmap-loc0-locpick_address0'),
        );
        drupal_add_js(array('gmap_remap_widgets' => $remap), 'setting');
      
        /* ... stuff copied from gmap_set_location(), etc... */
      </code>
      c92341bf
Loading