Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/thiagohrcosta/geocoding
A simple project to use geocoder and mapbox. A user can insert a new place with address, edit a place or delete. The address will be displayed as a marker on map.
https://github.com/thiagohrcosta/geocoding
bootstrap css3 geocode html5 javascript mapbox mapbox-gl rails ruby
Last synced: about 1 month ago
JSON representation
A simple project to use geocoder and mapbox. A user can insert a new place with address, edit a place or delete. The address will be displayed as a marker on map.
- Host: GitHub
- URL: https://github.com/thiagohrcosta/geocoding
- Owner: thiagohrcosta
- Created: 2021-05-01T01:26:59.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-05-22T01:52:24.000Z (over 3 years ago)
- Last Synced: 2024-10-03T18:41:35.469Z (about 2 months ago)
- Topics: bootstrap, css3, geocode, html5, javascript, mapbox, mapbox-gl, rails, ruby
- Language: Ruby
- Homepage: geocoding-nu.vercel.app
- Size: 327 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Géocodage
![main banner](https://res.cloudinary.com/dloadb2bx/image/upload/v1619914448/france3_fx7pxb.png)
## Technologies
This project was created with:
- [ERB](https://ruby-doc.org/stdlib-2.7.1/libdoc/erb/rdoc/ERB.html) (for template system with Ruby)
- [Pry-byebug](https://rubygems.org/gems/pry-byebug/versions/3.4.0?locale=pt-BR) (for debugging)
- [Geocoder](https://rubygems.org/gems/geocoder/versions/1.3.7?locale=pt-BR)## Map page
![map](https://res.cloudinary.com/dloadb2bx/image/upload/v1619914453/france4_h7quk8.png)## CSS Grid
To display places on main page was used CSS grid:
```
.box-flex{
display: grid;
grid-template-columns: 1fr 1fr 1fr;
grid-gap: 16px;
margin: 10px;
}.box-flat{
margin: 10px 0;
border: 1px solid #E8E8E8;
box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);
}
```## How to run this project
Download or clone it. . Then run in the main folder the command `rails server`. If needed, run `bundle install` to check if all gems are correctly installed. Then open the project on `localhost:3000/flats`## What user can do?
As user you can manipulate all **CRUD** operations like:- Insert a place (with address);
- Edit a place
- Delete a place;
- Search for any place on search bar;## Search for a place
The user can also use the search field to search for a desired place.
![enter image description here](https://res.cloudinary.com/dloadb2bx/image/upload/v1619914740/france5_kqk6ti.png)
## Development routine**April 30**
- Project created;
- Adding bootstrap, jquery, popper;
- Adding font-awesome, simple_form;
- Models and Controllers created with Scaffold;
- Database created;
- Adding geocorder gem;
- Adding a migration to insert latitude and longitude;
- Adding mapbox;
- Fixing bugs and adding markers;
- Fixing zoom;**May 1**
- Adding box content to marker;
- Adding search bar;
- Adding a migration to insert photo;