Place Pages – A new google maps product

Half a decade before, when i was studying in Haridwar, UK-India, i always need to come New Delhi (capital of India) for tours, picnics & various entrancce exams. So, before entering in capital, i were always buy a Atlas (a map book) of N.Delhi because it’s world’s one of the largest city having too much crowd and very networked city.

So, i always need to explore the places( historical buildings, colleges for exams, markets for shopping etc.). But i always found Atlas has very limited information which i want. Sometimes i need to consult with delhities (delhi’s localized people) for awareness of any place.

I was always very thankful of google to launch google maps.It was a wonderful place for exploring places anywhere in the world. With google maps, i can wonderfully zoom the maps for close look, can search nearby places, can see street views etc, some images of popular images with markers on the map.So, purpose of google map has always been to help the people to find information easily without exploring the whole web.
Last week google launched Google Place Pages on google maps.A Place Page is a web page for every place in the world, organizing all the world’s information for that place.There are Place Pages for businesses, historical places, points of interest, stations and airports, landmarks, and cities all over the world.

gmapinfo-1

Now we can get to a Place Page by just clicking on “more info >>“ in search results, or by clicking “more info” in

the mini-bubble.

gmapinfo-2

Here one can find Photos & Videos, popular places , map image with marker pointing to your location, reviews by other visitors etc.

gmapinfo-3

But there are some questions in my mind after seeing this enhancement made by google -

1.   Is google trying to resisting the visitors to navigate to other related travel site where one can found this

information?

2.   Will this enhancement be able to increase the revenue of google adwords by clicking the add on the google Place

page directly and not to any other related site ?

3.   Can ‘Place Page’ really affect the tours n travels guides websites and hence decrease their traffic and business ?

Importance of NULL in MYSQL

At the time of creation of any table, one should take care of defining the fields like datatype, datasize etc.
Apart from these we should also take care of whether the field value can be NULL (no value) or not.

What is NULL in mysql ? -

The NULL value is special; because it means “no value”. It is basically a condition, to check whether particular field value is null or not.

If we are not defining the column NOTNULL than MYSQL make it NULL by-default. But We shouldn’t define fields as NULL for any field due to some following reasons -

So, We should define fields as NOT NULL whenever We can.

For Eg. We need to make a table of Oscar awarded singers with columns: firstname , lastname, city, birthdate, death:
All singers will have firstname, lastname, city and birthdate but there can be lot of singers who has been expired.
So, we can put only deathdate column NULL.

CREATE TABLE singers
(
lastname VARCHAR(15) NOT NULL,
firstname VARCHAR(15) NOT NULL,
city VARCHAR(20) NOT NULL,
birthdate  DATE NOT NULL,
deathdate DATE NULL
)

So never forget to define NOTNULL  to any field on which any value must exist….

Hope it will help for your MYSQL optimization….

More Articles

form_for vs form_tag in Rails