Skip to content

Dhaboav/GeoAI-Maps

Repository files navigation


GeoAI-Maps

This repository is about using google maps service with feature adding custom marker and product into it.

Home Sample:

Sample Dashboard

Guide to Install

  1. Clone the repo
  git clone https://github.com/Dhaboav/GeoAI-Maps.git
  1. Navigate into project directory
  cd GeoAI-Maps;
  1. Install Dependencies
  composer install
  1. Set up .env
  copy .env.example .env
  1. 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
  1. Generate an Application Key
  php artisan key:generate
  1. Run Database Migrations
  php artisan migrate
  1. Serve the Application
  php artisan serve + npm run dev (development only)