Here is the tip to add standard Bing Maps control to a custom table form.
My scenario: I have a custom table logical name-new_student, and it has an address column logical name-"ab_address_bing_map". In the student table, I have a form named Student main form. The request is how to add Bing map control to the Student main form based on the address column field ab_address_bing_map.
Solution:
Create a custom combination address field. For my example field name: new_address_bing_map
Add this field to the main form
Using the tool "FormXml Manager" to get the main form and edit the customization file (customizations.xml)
4. Edit and add the code as highlighted below:
Note: Change the <AddressField> to your combination address field. In my example be field new_address_bing_map
<form headerdensity="HighWithControls">
<tabs>
<tab verticallayout="true" id="{93a8ead0-fc74-436b-b2b1-3510ea80535e}" IsUserDefined="1" name="New Tab" labelid="{7fa110ef-a2bd-4ede-8e8a-dda764f2b665}">
<labels>
<label description="General" languagecode="1033" />
</labels>
<columns>
<column width="100%">
<sections>
<section showlabel="false" showbar="false" IsUserDefined="0" id="{1c744b25-b25b-4409-a94b-4fe55e76c1f5}" name="New Section" labelid="{687a71a9-5e17-4cae-a2a4-c0890023f8a3}">
<labels>
<label description="New Section" languagecode="1033" />
</labels>
<rows>
<row>
<cell id="{f6204813-d20f-461d-b61c-320ea8a76856}" labelid="{28017e9f-f4dc-45be-9ca7-97afb21d909b}">
<labels>
<label description="No" languagecode="1033" />
</labels>
<control id="new_name" classid="{4273EDBD-AC1D-40D3-9FB2-095C621B552D}" datafieldname="new_name" />
</cell>
</row>
<row>
<cell id="{b649a0c9-de3e-4315-821a-c6c37e1af913}" locklevel="0" colspan="1" rowspan="1" labelid="{04303fc7-20f2-487a-b15c-a424487166fd}">
<labels>
<label description="Full Name" languagecode="1033" />
</labels>
<control id="new_full_name" classid="{4273EDBD-AC1D-40D3-9FB2-095C621B552D}" datafieldname="new_full_name" disabled="false" />
</cell>
</row>
<row>
<cell id="{689faa4d-088b-4205-9d41-8b859906059c}" locklevel="0" colspan="1" rowspan="1">
<labels>
<label description="Address Bing Map" languagecode="1033" />
</labels>
<control id="new_address_bing_map" classid="{4273EDBD-AC1D-40D3-9FB2-095C621B552D}" datafieldname="new_address_bing_map" disabled="false" />
</cell>
</row>
<row>
<cell id="{7c550a71-c8f5-469b-a221-aa4563525b70}" showlabel="false" rowspan="8" colspan="1" auto="false">
<labels>
<label description="Bing Maps" languagecode="1033" />
</labels>
<control id="mapcontrol" classid="{62B0DF79-0464-470F-8AF7-4483CFEA0C7D}">
<parameters>
<AddressField>new_address_bing_map</AddressField>
</parameters>
</control>
</cell>
</row>
</rows>
</section>
</sections>
5. Update and Publish
6. Check the result