Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/larswiegers/laravel-maps
Your laravel maps libary.
https://github.com/larswiegers/laravel-maps
googlemaps hacktoberfest laravel leafletjs map maps package
Last synced: about 15 hours ago
JSON representation
Your laravel maps libary.
- Host: GitHub
- URL: https://github.com/larswiegers/laravel-maps
- Owner: LarsWiegers
- License: mit
- Created: 2021-04-22T13:18:09.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2024-02-20T18:53:44.000Z (10 months ago)
- Last Synced: 2024-12-23T06:06:27.961Z (8 days ago)
- Topics: googlemaps, hacktoberfest, laravel, leafletjs, map, maps, package
- Language: PHP
- Homepage: https://github.com/LarsWiegers/laravel-maps
- Size: 1.16 MB
- Stars: 264
- Watchers: 5
- Forks: 35
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Laravel maps
[![Latest Version on Packagist](https://img.shields.io/packagist/v/larswiegers/laravel-maps.svg?style=flat-square)](https://packagist.org/packages/larswiegers/laravel-maps)
[![Total Downloads](https://img.shields.io/packagist/dt/larswiegers/laravel-maps.svg?style=flat-square)](https://packagist.org/packages/larswiegers/laravel-maps)
![GitHub Actions](https://github.com/larswiegers/laravel-maps/actions/workflows/main.yml/badge.svg)![Laravel maps](https://banners.beyondco.de/Laravel%20Maps.png?theme=light&packageManager=composer+require&packageName=larswiegers%2Flaravel-maps&pattern=architect&style=style_1&description=The+easiest+way+to+use+maps+in+your+laravel+app.+&md=1&showWatermark=0&fontSize=100px&images=map&widths=500&heights=500)
This package allows you to easily use leaflet.js or google maps to create a map in your laravel project.
## Installation
You can install the package via composer:
```bash
composer require larswiegers/laravel-maps
```If you want to customize the map views more then you can publish the views:
```bash
php artisan vendor:publish --provider="Larswiegers\LaravelMaps\LaravelMapsServiceProvider"
```## Supported map types
| What | Basic map | Different map types | Centerpoint | Basic markers | Use bounds | Zoomlevel | Can use different tiles | Can be used multiple times on the same page |
| ----------- | :-------: | :-----------------: | :---------: | :-----------: | :--------: | :-------: | :---------------------: | :------------------------------------------ |
| Leaflet | ✅ | ❌ | ✅ | ✅ | ❌ | ✅ | ✅ | ✅ |
| Google maps | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ |#### Tilehosts
##### Openstreetmap
Openstreetmap is a creative commence tile library created by volunteers.
No configuration has to be set to use as it is the default tilehost for this library.
More information can be found here: [openstreetmap.org](https://www.openstreetmap.org)##### Mapbox
Mapbox is a for profit company that also offers free keys.
Their map can be more accurate / precise.
To get your free key go to [mapbox.com](https://account.mapbox.com/auth/signup/)
Once logged in you can get your free key and use it by placing it in the env file like this ``MAPS_MAPBOX_ACCESS_TOKEN``.##### Attribution
Mapbox requires you to have attribution when you use their tilehost. More information on that here: https://docs.mapbox.com/help/getting-started/attribution/
We provide a default value if you use mapbox. But if you want to customize it you can pass in the te text via the attribution attribute. Like this:
```
OpenStreetMap contributors, Imagery © Mapbox">```
## Usage
### Leaflet```blade
// Leaflet
// A basic map is as easy as using the x blade component.// Set the centerpoint of the map:
// Set a zoomlevel:
// Set markers on the map:
```
Do note that if you want to use multiple maps on the same page that you need to specify an id per map.#### Leaflet Version
By default we use the latest version of leaflet, but if you want to use a different version just pass it in via a parameter:
```blade
// Set leafletVersion to desired version:```
### Google Maps
``` blade
// Google Maps// Set the centerpoint of the map:
// Set a zoomlevel:
// Set type of the map (roadmap, satellite, hybrid, terrain):
// Set markers on the map:
// You can customize the title for each markers:
// Automatically adjust the map's view during initialization to encompass all markers:
// Position the map's center at the geometric midpoint of all markers:
```
#### Google maps api key
You can get an api key here:
![console.cloud.google.com](https://console.cloud.google.com/project/_/apiui/credential)
Create an api key and enable the Maps Javascript API in the console aswell.
Place the api key in the env file like this ``MAPS_GOOGLE_MAPS_ACCESS_TOKEN``### Good to know
Double quotes need to be escaped, i.e. add a backslash followed by double quotes (/")### Usage in livewire
This library does not support livewire out of the box, but some users have found a workaround to work.
Please see this issue for more information: https://github.com/LarsWiegers/laravel-maps/issues/34Feel free to PR a livewire component if you have the time.
### Testing
To run the tests just use the following component:
```bash
composer test
```Testing is done through rendering the blade components and making assertions on the html outputted.
While this is great for initial testing it does lack some more certainty. In the future an browser test may be needed to further make sure that the code works as intended.### Changelog
Please see [CHANGELOG](CHANGELOG.md) for more information what has changed recently.
## Contributing
Please see [CONTRIBUTING](CONTRIBUTING.md) for details.
### Security
If you discover any security related issues, please email [email protected] instead of using the issue tracker.
## Credits
- [Lars Wiegers](https://github.com/larswiegers)
- [All Contributors](../../contributors)## License
The MIT License (MIT). Please see [License File](LICENSE.md) for more information.