forkie
forkie

Reputation: 602

is it possible to use google maps markers as checkboxes?

I want to use Google Maps as multiple locations picker. Is it possible to make map markers selectable and use it in form for submission?

Upvotes: 1

Views: 278

Answers (1)

Ben D
Ben D

Reputation: 14489

You can "fake" this by assigning an onclick event handler to the icon. Create a custom marker with an empty check box image in it, and then assign an onclick event that:

  • A) Swaps the icon with an identical icon with a checkbox checked icon
  • B) Creates or modifies a hidden input field somewhere else on the page which can be used for logic

Upvotes: 5

Related Questions