pre-sale GeoCoder plugin questions

By Deborah - December 14, 2018

Hi. This question is directed to Interactive Tools, but if anyone else knows the answers, I welcome your input.

I viewed Chris' video on the plugins page and understand the basic implementation, but have questions:

1) Is it possible to present a multi-address map with a variety of pin colors (aka layers) based on category selection? For example:
- Category A pins are red
- Category B pins are blue
- Category C pins are yellow

2) Can a popup (infoWindow) display an image (uploaded in CMSB) for each address?

3) I'm baffled by the Google Maps Platform pricing (https://cloud.google.com/maps-platform/pricing/sheet/). Do most projects fit in the Google aps "$200 MONTHLY CREDIT EQUIVALENT FREE USAGE"?

~ Deborah

By gkornbluth - December 15, 2018 - edited: December 15, 2018

Hi Deborah,

As to the pricing. It's basically to protect google against high volume users.

Look at the "$200 monthly credit Equivalent free usage" column.

If the way your Geocoder was set up, all your client's visitors ever used was dynamic maps, your client would not be charges anything until their visitors accessed dynamic maps more than 28000 times in any month. If they accessed them 29000 times then they would be billed $7.00.

The pop up window can display an image, along with other information.(screen shot attached)

Here's an example that uses multiple custom fields including an image:

<div id="marker_infowindow_<?php echo $record['num']; ?>">
<h3><?php foreach ($record['profile_image'] as $index => $upload): ?><img src="<?php echo htmlencode($upload['thumbUrlPath']) ?>" width="<?php echo $upload['thumbWidth'] ?>" height="<?php echo $upload['thumbHeight'] ?>" alt="" /><?php endforeach ?><br /><?php echo htmlencode( @$record['practice_name']); ?><br /><?php echo htmlencode( @$record['practice_street_address']); ?><br />
<?php echo htmlencode( @$record['practice_city']); ?>, <?php echo htmlencode( @$record['practice_state']); ?> <?php echo htmlencode( @$record['practice_zip']); ?></h3>
<a href="<?php echo $record['_link']; ?>"><span class="text_font">Learn About This Provider</span></a> </div>
<?php endif ?><?php endforeach ?>
</div>

As to the colors, I look forward to the answer.

Hope that helps,

Jerry Kornbluth

The first CMS Builder reference book is now available on-line!







Take advantage of a free 3 month trial subscription, only for CMSB users, at: http://www.thecmsbcookbook.com/trial.php
Attachments:

Pop Up With Image.jpg 28K

By Deborah - December 17, 2018

Jerry, thanks so much for the info and screenshot example with the image. That's excellent!

~ Deborah

By Deborah - December 17, 2018

Daniel, I appreciate your detailed response.

I'll save your suggestions and instructions for use if the project comes through. Hope it does, because I'd love to have a chance at using the GeoCoder plugin!

~ Deborah