arcasolutions/google-map
Laravel package providing Google Maps integration for your app, with helpers to generate map views and include the required scripts. Useful for quickly embedding maps and configuring markers or map options within Laravel projects.
Polygons are useful overlays to represent arbitrarily-sized areas, but they cannot display images. If you have an image that you wish to place on a map, you can use a GroundOverlay object.
use Ivory\GoogleMap\Overlays\GroundOverlay;
$groundOverlay = new GroundOverlay();
// Configure your ground overlay options
$groundOverlay->setPrefixJavascriptVariable('ground_overlay_');
$groundOverlay->setUrl('url');
$groundOverlay->setBound(-1, -1, 1, 1, true, true);
$groundOverlay->setOption('clickable', false);
$groundOverlay->setOptions(array('clickable' => false));
use Ivory\GoogleMap\Overlays\GroundOverlay;
$groundOverlay = new GroundOverlay();
// Add your ground overlay to the map
$map->addGroundOverlay($groundOverlay);
How can I help you explore Laravel packages today?