Posts

Displaying Current Location on Map Using Leaflet JS

Image
Lets Get Started -       1.      First we create a basic HTML Structure with a Header and a Body section.       2.      Then Insert a <div> element in the body section to set the Map id so that we can style     the Map later.        3.    Now you can insert <style> tag inside the header section to style the map. (The above style sets the map to Fullscreen)           4.    Now we will import the Leaflet library   copy the below code and paste it in the head section- < link       rel = "stylesheet"       href = "https://unpkg.com/leaflet@1.7.1/dist/leaflet.css"       integrity = "sha512-xodZBNTC5n17Xt2atTPuE1HxjVMSvLVW9ocqUKLsCC5CXdbqCmblAshOMAS6/keqq/sMZMZ19scR4PsZChSR7A=="       crossorigin = ""     />     < script     ...

AI Real time face Detection using WebCam (PYTHON)

Image
For Real Time Face Detection we are going to use   opencv   library:- Let's get started- To Installing the library simply open the terminal window and type  -                                                                                                                                                                                                                                      "pip install openc...

XML parsing using python

Image
In order to parse a  XML website we are going to use beautiful soup library. follow the steps written below -  Go to terminal window and enter - "pip install beautifulsoup4".                                                                                                                                                                                                                                        ...