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.
The map type control lets the user toggle between map types (such as ROADMAP and SATELLITE). This control appears by default in the top right corner of the map.
use Ivory\GoogleMap\Controls\ControlPosition;
use Ivory\GoogleMap\Controls\MapTypeControl;
use Ivory\GoogleMap\Controls\MapTypeControlStyle;
use Ivory\GoogleMap\MapTypeId;
$mapTypeControl = new MapTypeControl();
// Configure your map type control
$mapTypeControl->setMapTypeIds(array(MapTypeId::ROADMAP, MapTypeId::SATELLITE));
$mapTypeControl->addMapTypeId(MapTypeId::ROADMAP);
$mapTypeControl->addMapTypeId(MapTypeId::SATELLITE);
$mapTypeControl->setControlPosition(ControlPosition::TOP_RIGHT);
$mapTypeControl->setMapTypeControlStyle(MapTypeControlStyle::DEFAULT_);
For configurating the map type ids, the better way is to follow the oriented object way. For that, the
Ivory\GoogleMap\MapTypeId is here. It allows you to access all constants which describe map types. If you don't
want to use this class, you can directly use the constant value.
use Ivory\GoogleMap\MapTypeId;
use Ivory\GoogleMap\Controls\MapTypeControl;
$mapTypeControl = new MapTypeControl();
// Add your map type
$mapTypeControl->addMapTypeId(MapTypeId::HYBRID);
$mapTypeControl->addMapTypeId('hybrid');
$mapTypeControl->addMapTypeId(MapTypeId::ROADMAP);
$mapTypeControl->addMapTypeId('roadmap');
$mapTypeControl->addMapTypeId(MapTypeId::SATELLITE);
$mapTypeControl->addMapTypeId('satellite');
$mapTypeControl->addMapTypeId(MapTypeId::TERRAIN);
$mapTypeControl->addMapTypeId('terrain');
For configurating the map type control position, the better way is to follow the oriented object way. For that, the
Ivory\GoogleMap\Controls\ControlPosition is here. It allows you to access all constants which describe control
position. If you don't want to use this class, you can directly use the constant value.
use Ivory\GoogleMap\Controls\ControlPosition;
use Ivory\GoogleMap\Controls\MapTypeControl;
$mapTypeControl = new MapTypeControl();
// Sets your control position
$mapTypeControl->setControlPosition(ControlPosition::TOP_LEFT);
$mapTypeControl->setControlPosition('top_left');
$mapTypeControl->setControlPosition(ControlPosition::TOP_CENTER);
$mapTypeControl->setControlPosition('top_center');
$mapTypeControl->setControlPosition(ControlPosition::TOP_RIGHT);
$mapTypeControl->setControlPosition('top_right');
$mapTypeControl->setControlPosition(ControlPosition::LEFT_TOP);
$mapTypeControl->setControlPosition('left_top');
$mapTypeControl->setControlPosition(ControlPosition::LEFT_CENTER);
$mapTypeControl->setControlPosition('left_center');
$mapTypeControl->setControlPosition(ControlPosition::LEFT_BOTTOM);
$mapTypeControl->setControlPosition('left_bottom');
$mapTypeControl->setControlPosition(ControlPosition::RIGHT_TOP);
$mapTypeControl->setControlPosition('right_top');
$mapTypeControl->setControlPosition(ControlPosition::RIGHT_CENTER);
$mapTypeControl->setControlPosition('right_center');
$mapTypeControl->setControlPosition(ControlPosition::RIGHT_BOTTOM);
$mapTypeControl->setControlPosition('right_bottom');
$mapTypeControl->setControlPosition(ControlPosition::BOTTOM_LEFT);
$mapTypeControl->setControlPosition('bottom_left');
$mapTypeControl->setControlPosition(ControlPosition::BOTTOM_CENTER);
$mapTypeControl->setControlPosition('bottom_center');
$mapTypeControl->setControlPosition(ControlPosition::BOTTOM_RIGHT);
$mapTypeControl->setControlPosition('bottom_right');
For configurating the map type control style, the better way is to follow the oriented object way. For that, the
Ivory\GoogleMap\Controls\MapTypeControlStyle is here. It allows you to access all constants which describe map type
control style. If you don't want to use this class, you can directly use the constant value.
use Ivory\GoogleMap\Controls\MapTypeControl;
use Ivory\GoogleMap\Controls\MapTypeControlStyle;
$mapTypeControl = new MapTypeControl();
// Sets your map type control style
$mapTypeControl->setMapTypeControlStyle(MapTypeControlStyle::DEFAULT_);
$mapTypeControl->setMapTypeControlStyle('default');
$mapTypeControl->setMapTypeControlStyle(MapTypeControlStyle::DROPDOWN_MENU);
$mapTypeControl->setMapTypeControlStyle('dropdown_menu');
$mapTypeControl->setMapTypeControlStyle(MapTypeControlStyle::HORIZONTAL_BAR);
$mapTypeControl->setMapTypeControlStyle('horizontal_bar');
use Ivory\GoogleMapBundle\Model\MapTypeId;
use Ivory\GoogleMapBundle\Model\Controls\ControlPosition;
use Ivory\GoogleMap\Controls\MapTypeControl;
use Ivory\GoogleMapBundle\Model\Controls\MapTypeControlStyle;
$mapTypeControl = new MapTypeControl();
// Add your map type control to the map
$map->setMapTypeControl($mapTypeControl);
$map->setMapTypeControl(
array(MapTypeId::ROADMAP, MapTypeId::SATELLITE),
ControlPosition::TOP_RIGHT,
MapTypeControlStyle::DEFAULT_
);
How can I help you explore Laravel packages today?