All Projects → jeffreykemp → jk64-plugin-reportmap

jeffreykemp / jk64-plugin-reportmap

Licence: MIT license
Report Google Map APEX Plugin

Programming Languages

javascript
184084 projects - #8 most used programming language
CSS
56736 projects

Projects that are alternatives of or similar to jk64-plugin-reportmap

apex-plugin-ig simple checkbox
Oracle APEX Item Plugin - IG Simple Checkbox
Stars: ✭ 21 (-43.24%)
Mutual labels:  oracle, oracle-apex-plugin, oracle-apex
vue-static-map
a simple component to generate an static google map
Stars: ✭ 24 (-35.14%)
Mutual labels:  map, google-maps
flutter google maps
A Flutter plugin for integrating Google Maps in iOS, Android and Web applications. It is a wrapper of google_maps_flutter for Mobile and google_maps for Web.
Stars: ✭ 86 (+132.43%)
Mutual labels:  map, google-maps
Flask Googlemaps
Easy way to add GoogleMaps to Flask applications. maintainer: @RiverFount
Stars: ✭ 550 (+1386.49%)
Mutual labels:  map, google-maps
apex-plugin-spotlight
Oracle APEX Dynamic Action Plugin - APEX Spotlight Search
Stars: ✭ 20 (-45.95%)
Mutual labels:  oracle, oracle-apex
Simplemap
A beautifully simple map field type for Craft CMS.
Stars: ✭ 136 (+267.57%)
Mutual labels:  map, google-maps
KotlinProject
This repo help for all developer who want to learn android or want to work on advance feature of android. This repo created with help of @awesomeui, @materialdesign and android latest feature. this repo contain major feature like : @awesome UI, @Material design, @firebase (auth, realtime database, firestore, push notification), @database (Room d…
Stars: ✭ 40 (+8.11%)
Mutual labels:  map, google-maps
apex-plugin-clockpicker
Oracle APEX Item Plugin - ClockPicker
Stars: ✭ 14 (-62.16%)
Mutual labels:  oracle, oracle-apex-plugin
Placepicker
Free Android Map Place Picker alternative using Geocoder instead of Google APIs
Stars: ✭ 126 (+240.54%)
Mutual labels:  map, google-maps
Bikedeboa
A (Progressive) Web App to find, map and review bike parkings in the cities of Brazil.
Stars: ✭ 54 (+45.95%)
Mutual labels:  map, google-maps
mapus
A map tool with real-time collaboration 🗺️
Stars: ✭ 2,687 (+7162.16%)
Mutual labels:  map, google-maps
Gmapsfx
Java API for using Google Maps within a JavaFX application.
Stars: ✭ 233 (+529.73%)
Mutual labels:  map, google-maps
Pizza Delivery
university project : Android pizza delivery app
Stars: ✭ 32 (-13.51%)
Mutual labels:  map, google-maps
Airmapview
A view abstraction to provide a map user interface with various underlying map providers
Stars: ✭ 1,824 (+4829.73%)
Mutual labels:  map, google-maps
apex-plugin-templates
Templates for Oracle APEX Plug-ins
Stars: ✭ 27 (-27.03%)
Mutual labels:  oracle, oracle-apex-plugin
osm flutter
OpenStreetMap plugin for flutter
Stars: ✭ 121 (+227.03%)
Mutual labels:  map
timedmap
A thread safe map which has expiring key-value pairs.
Stars: ✭ 49 (+32.43%)
Mutual labels:  map
terraform-provider-opc
Terraform Oracle Public Cloud provider
Stars: ✭ 29 (-21.62%)
Mutual labels:  oracle
sha256 plsql
SHA256 PL/SQL Implementation for Oracle 10g,11g.
Stars: ✭ 52 (+40.54%)
Mutual labels:  oracle
d3-geomap
A library for creating geographical maps based on D3.js
Stars: ✭ 124 (+235.14%)
Mutual labels:  map

Report Map (Google Maps) APEX Plugin APEX 18.2

A region plugin for Oracle Application Express

Leverage the power of Google Maps in your APEX application. This plugin allows you to add one or more Google Map regions to any page, showing a number of markers (pins) retrieved from a query or other data source you specify.

The plugin provides a rich array of built-in declarative features, dynamic actions and associated API routines, and gives access to the underlying Google Maps object so you can customise it with any other behaviour you need.

plugin-reportmap-markers.png

The user can click any marker to see a popup info window for it.

Visualisation: Marker Clustering

plugin-reportmap-clustering.png

If many pins are too close together, Marker Clustering merges them into a single cluster; the number indicates how many pins are at that location. As the user zooms in or out, the clusters will split up or merge as needed.

Visualisation: Spiderfier

spiderfier.gif

If many pins are too close together or overlapping, the Spiderfier shifts them when clicked into a ring or spiral with lines pointing back to their original location.

Visualisation: Heatmap

plugin-reportmap-heatmap.png

This is suitable for a large volume of data points. Each data point can have a "weight" which indicates the magnitude of some measure.

Visualisation: Directions

plugin-reportmap-route.png

Up to 10 points (origin, destination, plus up to 8 waypoints) may be supplied to derive a route. Google Maps can generate a route for Driving, Walking, Bicycling, or Transit (public transport). The plugin can also get the calculated total Distance and Time for the route.

Visualisation: Info Layer

plugin-reportmap-infolayer.png

Renders the Info column containing any arbitrary HTML (including text, formatting, icons, and images) on the map.

Drawing & GeoJSON

plugin-reportmap-drawing.png

Allow users to interactively draw shapes (points, lines, polygons, and holes in polygons) onto the map. Export the shapes as a GeoJSON document. Load shapes from a GeoJSON document.

DEMO

demo_app.png

DEMO - apex.oracle.com

PRE-REQUISITES

  • Oracle Application Express 18.2 or later

    NOTE: Release 1.3.1 was the last version that includes a backport for versions prior to APEX 18.2.

  • Your Google Maps API Key

    Google provides a free monthly credit which includes thresholds for some API requests (some are unlimited). You can use the platform to set daily quotas and email alerts to control your monthly costs. Refer to the pricing information page for details.

    Make sure to restrict your API key to your domain, especially if your website will be accessible on the internet. You can modify this at any time as required.

INSTALLATION INSTRUCTIONS

NOTE: if you are upgrading from any version prior to 1.0 (i.e. 0.x), some changes will be required to your application to support it as a number of attributes have been removed or changed.

  1. Download the latest release

  2. In your application, go to Shared Components -> Plug-ins and click Import

  3. Import the region plugin: region_type_plugin_com_jk64_report_google_map_r1.sql

  4. Supply your public Google API Key (Component Settings)

  5. Add a region to the page, select type JK64 Report Google Map R1 [Plug-In]

  6. For SQL Source, enter a query with at least 4 columns, for example:

    SELECT lat, lng, name, id FROM mydata

    (if you just want a map with no data, enter a dummy query (e.g. select 1 from dual); then in the map region properties, set Source -> Location to - Select -)

  7. (OPTIONAL) To add dynamic action features, import the companion Dynamic Action plugins:

    dynamic_action_plugin_com_jk64_report_google_map_da_r1.sql dynamic_action_plugin_com_jk64_report_google_map_directions_da.sql

IF YOU ARE UPGRADING from any prior release, refer to the Upgrade Notes.

SUPPORT

  • In APEX, select any attribute and view the Help for more information and helpful tips.

  • Refer to the WIKI for sample queries, plugin attributes, triggers, API references, and other tips & tricks.

  • If you encounter a bug or have a great idea for enhancement, please raise an Issue. I will endeavour to respond to each issue as quickly as possible.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].