Upload audio and videos by paperclip rails October 5, 2015 Steps to Upload any type of media in ruby on rails by paperclip 1) Upload video a) apply gem “paperclip-ffmpeg”, “~> 1.0.1” b) Apply validation in model… Continue Reading
Find Latitude Longitude using Ip address October 5, 2015 Below mentioned way is to get lat long using ip address It allows 250 requests in a minute http://ip-api.com Using Net::HTTP require ‘net/http’ class… Continue Reading
LatLngBounds for Mapbox.js to fetch all corners lat long of map October 5, 2015 Represents a rectangular geographical area on a map. var southWest = L.latLng(40.712, -74.227), northEast = L.latLng(40.774, -74.125), bounds = L.latLngBounds(southWest, northEast); All Leaflet methods… Continue Reading