PHPackages                             hypejunction/hypemaps - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. hypejunction/hypemaps

ActiveElgg-plugin[Utility &amp; Helpers](/categories/utility)

hypejunction/hypemaps
=====================

Maps UI for Elgg

2.2.2(10y ago)51688[2 issues](https://github.com/hypeJunction/hypeMaps/issues)GPL-2.0PHPPHP &gt;=5.3.3

Since Aug 3Pushed 10y ago4 watchersCompare

[ Source](https://github.com/hypeJunction/hypeMaps)[ Packagist](https://packagist.org/packages/hypejunction/hypemaps)[ Docs](http://hypejunction.com)[ RSS](/packages/hypejunction-hypemaps/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (2)Dependencies (3)Versions (6)Used By (0)

hypeMaps
========

[](#hypemaps)

[![Elgg 1.10](https://camo.githubusercontent.com/eb8e2e027d129149978ce1fe364a82ad4124b6746dbc458e6cb086c8c38f9343/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f456c67672d312e31302e782d6f72616e67652e7376673f7374796c653d666c61742d737175617265)](https://camo.githubusercontent.com/eb8e2e027d129149978ce1fe364a82ad4124b6746dbc458e6cb086c8c38f9343/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f456c67672d312e31302e782d6f72616e67652e7376673f7374796c653d666c61742d737175617265)[![Elgg 1.11](https://camo.githubusercontent.com/eb70bd54ec09a4dbe53815a1d2040f2515089becfb1cc1c57edaaf114accd4fe/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f456c67672d312e31312e782d6f72616e67652e7376673f7374796c653d666c61742d737175617265)](https://camo.githubusercontent.com/eb70bd54ec09a4dbe53815a1d2040f2515089becfb1cc1c57edaaf114accd4fe/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f456c67672d312e31312e782d6f72616e67652e7376673f7374796c653d666c61742d737175617265)[![Elgg 1.12](https://camo.githubusercontent.com/b34240a6eeb53630b7f0fd235a508c28d6e93e6090697529c478ba94288eff93/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f456c67672d312e31322e782d6f72616e67652e7376673f7374796c653d666c61742d737175617265)](https://camo.githubusercontent.com/b34240a6eeb53630b7f0fd235a508c28d6e93e6090697529c478ba94288eff93/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f456c67672d312e31322e782d6f72616e67652e7376673f7374796c653d666c61742d737175617265)[![Elgg 2.0](https://camo.githubusercontent.com/981b94044a74b931be93e2825c7151896de9c8a53ccb960daf01b8fe0d800774/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f456c67672d322e302e782d6f72616e67652e7376673f7374796c653d666c61742d737175617265)](https://camo.githubusercontent.com/981b94044a74b931be93e2825c7151896de9c8a53ccb960daf01b8fe0d800774/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f456c67672d322e302e782d6f72616e67652e7376673f7374796c653d666c61742d737175617265)

Google Maps integration for Elgg

Support the development
-----------------------

[](#support-the-development)

1. [Buy me a vegetable!](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=P7QA9CFMENBKA)
2. You can also support the development of this plugin by sharing a percentage of your real-estate allocated to AdSense Units. You can specify the percentage you would like to share with me (0 to 100) in the plugin settings. On every page load, the plugin will switch between your publisher ID and my publisher ID. E.g. if you choose to share 10%, your publisher ID will be used on 90% of all page views, my publisher ID will be used on 10% of page views

Getting Started
---------------

[](#getting-started)

- You will require a valid Google API key. You can obtain one at . Configure your project to include the following APIs:
- Static Maps API
- Google Maps Javascript API
- Google Maps Geolocation API
- Geocoding API
- Geocoding features are not included with this plugin. You will need to install another plugin fit for that purpose. You can use my hypeGeo plugin found here:
- Places features have been decoupled into a separate plugin, so grab a copy of that if you are upgrading from previous versions:
- Make sure you restrict the use of your API Key to domains you administer, otherwise someone else can copy them from public facing JS/static map URLs and reuse them

Developer Notes
---------------

[](#developer-notes)

- Similar to how the gallery view is toggled, map view can be toggled by adding `?list_type=mapbox` to any page that has a list generated using core API
- To build and show a new dynamic map, use something along these lines:

```
// Display friends on the map
$params = array(
	'options' => array(
		'id' => 'friends', // List id / must be unique on the page
		'types' => 'user',
		'relationship' => 'friend',
		'relationship_guid' => elgg_get_logged_in_user_guid()
	),
	'getter' => 'elgg_get_entities_from_relationship',
);
echo \hypeJunction\Maps\ElggMap::showMap($params);

```

This example will render a map of user's friends. The generated map will be filterable, as appose to the one you would have generated using `elgg_list_entities_from_relationship()` passing `'list_type' => 'mapbox'`

Note that maps generated in this fashion will only include entities taht have a geocoded location. If you need a list of all entities with an additional map overview, use `elgg_list_entities_*` and pass a mapbox list type.

- To modify a list of sitewide or group maps, use `'search:site','maps'` and `'search:group','maps'` hooks. See the code for some examples. You will need to add your custom views.

Screenshots
-----------

[](#screenshots)

[![alt text](https://camo.githubusercontent.com/96d9f5a84e51baca95e6d06af0a4d117a5b02930670c899c44c6f6f3bd8cb221/68747470733a2f2f7261772e6769746875622e636f6d2f687970654a756e6374696f6e2f687970654d6170732f6d61737465722f73637265656e73686f74732f6d61705f75736572732e706e67 "User search")](https://camo.githubusercontent.com/96d9f5a84e51baca95e6d06af0a4d117a5b02930670c899c44c6f6f3bd8cb221/68747470733a2f2f7261772e6769746875622e636f6d2f687970654a756e6374696f6e2f687970654d6170732f6d61737465722f73637265656e73686f74732f6d61705f75736572732e706e67)

###  Health Score

29

—

LowBetter than 59% of packages

Maintenance12

Infrequent updates — may be unmaintained

Popularity19

Limited adoption so far

Community14

Small or concentrated contributor base

Maturity62

Established project with proven stability

 Bus Factor1

Top contributor holds 98% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~68 days

Total

4

Last Release

3736d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/5071b1cd852e094b3f564962a625e04c227adc73af30c5b46b243ab8f20154a7?d=identicon)[hypeJunction](/maintainers/hypeJunction)

---

Top Contributors

[![hypeJunction](https://avatars.githubusercontent.com/u/1202761?v=4)](https://github.com/hypeJunction "hypeJunction (49 commits)")[![aethiopicus](https://avatars.githubusercontent.com/u/1450974?v=4)](https://github.com/aethiopicus "aethiopicus (1 commits)")

---

Tags

pluginelggmapsGoogle Maps API

### Embed Badge

![Health badge](/badges/hypejunction-hypemaps/health.svg)

```
[![Health](https://phpackages.com/badges/hypejunction-hypemaps/health.svg)](https://phpackages.com/packages/hypejunction-hypemaps)
```

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
