I have to map my leads on dashboards such that they are mapped till their street addresses, right now i see only 1 dot on dashboard for so many of my records that have the same zip code/city but different street addresses. I have added the street address node to the entityaddressfields.xml and also as one of the mapping conditions in BingMapConfig.xml.
entityaddressfields.xml have the lead entity node like this:
<entity name="lead">
<address1 name="address1_line1"></address1>
<city name="address1_city"></city>
<state name="address1_stateorprovince"></state>
<country name ="address1_country"></country>
<postalcode name="amg_ziplookuptext"></postalcode>
<latitude name="address1_latitude"></latitude>
<longitude name="address1_longitude"></longitude>
</entity>
Also when i have more than one entities showing on the dash board, I am selecting ''Accounts" entity in the drop down and then clicking Load, but it still shows points on the map for 2 entities and not only one ("accounts"). am i missing something here?
Comments: To include street level address, add "street" node in entityaddressfields.xml. In your example, replace 'address1' with 'street'. But doing that, you may or may not get the location via Bing API as it might fail due to complex street names. Other way is to manually change the pinpoint in lead form by right clicking in map. It will update the corresponding lat-long fields of record. Let me know if you need more clarity for above points. Regarding account records also rendering with leads, it is by design :-). One can avoid account records by setting some random filter value. Thanks, Atul
entityaddressfields.xml have the lead entity node like this:
<entity name="lead">
<address1 name="address1_line1"></address1>
<city name="address1_city"></city>
<state name="address1_stateorprovince"></state>
<country name ="address1_country"></country>
<postalcode name="amg_ziplookuptext"></postalcode>
<latitude name="address1_latitude"></latitude>
<longitude name="address1_longitude"></longitude>
</entity>
Also when i have more than one entities showing on the dash board, I am selecting ''Accounts" entity in the drop down and then clicking Load, but it still shows points on the map for 2 entities and not only one ("accounts"). am i missing something here?
Comments: To include street level address, add "street" node in entityaddressfields.xml. In your example, replace 'address1' with 'street'. But doing that, you may or may not get the location via Bing API as it might fail due to complex street names. Other way is to manually change the pinpoint in lead form by right clicking in map. It will update the corresponding lat-long fields of record. Let me know if you need more clarity for above points. Regarding account records also rendering with leads, it is by design :-). One can avoid account records by setting some random filter value. Thanks, Atul