This repository is about using google maps service with feature adding custom marker and product into it.
Home Sample:
- Clone the repo
git clone https://github.com/Dhaboav/GeoAI-Maps.git
- Navigate into project directory
cd GeoAI-Maps;
- Install Dependencies
composer install
- Set up .env
copy .env.example .env
- Configure the database and google API key
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=your_database_name
DB_USERNAME=your_database_user
DB_PASSWORD=your_database_password
GOOGLE_MAPS_API_KEY=your_API_key
- Generate an Application Key
php artisan key:generate
- Run Database Migrations
php artisan migrate
- Serve the Application
php artisan serve + npm run dev (development only)